@@ -67,10 +67,10 @@ discard block |
||
67 | 67 | */ |
68 | 68 | function geodir_comment_rating_meta($comment) { |
69 | 69 | $post_type = get_post_type($comment->comment_post_ID); |
70 | - if (in_array($post_type, (array)geodir_get_posttypes()) && (int)$comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) { |
|
70 | + if (in_array($post_type, (array) geodir_get_posttypes()) && (int) $comment->comment_parent == 0 && !(!empty($post_type) && geodir_cpt_has_rating_disabled($post_type))) { |
|
71 | 71 | $rating = geodir_get_commentoverall($comment->comment_ID); |
72 | 72 | |
73 | - if ((int)get_option('geodir_reviewrating_enable_font_awesome') == 1) { |
|
73 | + if ((int) get_option('geodir_reviewrating_enable_font_awesome') == 1) { |
|
74 | 74 | $star_texts = array(); |
75 | 75 | $star_texts[] = __('Terrible', 'geodirectory'); |
76 | 76 | $star_texts[] = __('Poor', 'geodirectory'); |
@@ -81,13 +81,13 @@ discard block |
||
81 | 81 | echo geodir_font_awesome_rating_form_html('', $star_texts, $rating); |
82 | 82 | } else { |
83 | 83 | if ($rating) { |
84 | - echo '<div class="gd_rating" data-average="' . $rating . '" data-id="5">'; |
|
84 | + echo '<div class="gd_rating" data-average="'.$rating.'" data-id="5">'; |
|
85 | 85 | |
86 | 86 | } else { |
87 | 87 | echo '<div class="gd_rating" data-average="0" data-id="5"></div>'; |
88 | 88 | } |
89 | 89 | } |
90 | - echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="' . $rating . '" />'; |
|
90 | + echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="'.$rating.'" />'; |
|
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
@@ -140,9 +140,9 @@ discard block |
||
140 | 140 | { |
141 | 141 | |
142 | 142 | if (strpos($link, 'wp-login.php?') !== false) { |
143 | - $link = str_replace(wp_login_url(),geodir_login_url(),$link); |
|
143 | + $link = str_replace(wp_login_url(), geodir_login_url(), $link); |
|
144 | 144 | } |
145 | - $link = '<div class="gd_comment_replaylink">' . $link . '</div>'; |
|
145 | + $link = '<div class="gd_comment_replaylink">'.$link.'</div>'; |
|
146 | 146 | |
147 | 147 | return $link; |
148 | 148 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | function geodir_cancle_replaylink($link) |
160 | 160 | { |
161 | 161 | |
162 | - $link = '<span class="gd-cancel-replaylink">' . $link . '</span>'; |
|
162 | + $link = '<span class="gd-cancel-replaylink">'.$link.'</span>'; |
|
163 | 163 | |
164 | 164 | return $link; |
165 | 165 | } |
@@ -199,10 +199,10 @@ discard block |
||
199 | 199 | if (isset($_REQUEST['geodir_overallrating'])) { |
200 | 200 | $overall_rating = $_REQUEST['geodir_overallrating']; |
201 | 201 | |
202 | - if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) { |
|
202 | + if (isset($comment_info->comment_parent) && (int) $comment_info->comment_parent == 0) { |
|
203 | 203 | $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
204 | 204 | |
205 | - $sqlqry = $wpdb->prepare("INSERT INTO " . GEODIR_REVIEW_TABLE . " SET |
|
205 | + $sqlqry = $wpdb->prepare("INSERT INTO ".GEODIR_REVIEW_TABLE." SET |
|
206 | 206 | post_id = %d, |
207 | 207 | post_type = %s, |
208 | 208 | post_title = %s, |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | |
290 | 290 | $post_type = get_post_type($post_id); |
291 | 291 | |
292 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
292 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
293 | 293 | |
294 | 294 | if ($comment_id) { |
295 | 295 | |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | |
298 | 298 | if (isset($old_rating)) { |
299 | 299 | |
300 | - $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET |
|
300 | + $sqlqry = $wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET |
|
301 | 301 | overall_rating = %f, |
302 | 302 | status = %s, |
303 | 303 | comment_content = %s |
@@ -339,18 +339,18 @@ discard block |
||
339 | 339 | |
340 | 340 | $post_type = get_post_type($post_id); |
341 | 341 | |
342 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
342 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
343 | 343 | |
344 | 344 | if (isset($_REQUEST['geodir_overallrating'])) { |
345 | 345 | |
346 | 346 | $overall_rating = $_REQUEST['geodir_overallrating']; |
347 | 347 | |
348 | - if (isset($comment_info->comment_parent) && (int)$comment_info->comment_parent == 0) { |
|
348 | + if (isset($comment_info->comment_parent) && (int) $comment_info->comment_parent == 0) { |
|
349 | 349 | $overall_rating = $overall_rating > 0 ? $overall_rating : '0'; |
350 | 350 | |
351 | 351 | if (isset($old_rating)) { |
352 | 352 | |
353 | - $sqlqry = $wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET |
|
353 | + $sqlqry = $wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET |
|
354 | 354 | overall_rating = %f, |
355 | 355 | status = %s, |
356 | 356 | comment_content = %s |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | |
389 | 389 | $wpdb->query( |
390 | 390 | $wpdb->prepare( |
391 | - "DELETE FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d", |
|
391 | + "DELETE FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d", |
|
392 | 392 | array($comment_id) |
393 | 393 | ) |
394 | 394 | ); |
@@ -407,9 +407,9 @@ discard block |
||
407 | 407 | * @return string The comment content. |
408 | 408 | */ |
409 | 409 | function geodir_wrap_comment_text($content, $comment = '') { |
410 | - if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int)$comment->comment_post_ID)) { |
|
410 | + if (!empty($comment->comment_post_ID) && geodir_cpt_has_rating_disabled((int) $comment->comment_post_ID)) { |
|
411 | 411 | if (!is_admin()) { |
412 | - return '<div class="description">' . $content . '</div>'; |
|
412 | + return '<div class="description">'.$content.'</div>'; |
|
413 | 413 | } else { |
414 | 414 | return $content; |
415 | 415 | } |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | if (!empty($comment)) |
419 | 419 | $rating = geodir_get_commentoverall($comment->comment_ID); |
420 | 420 | if ($rating != 0 && !is_admin()) { |
421 | - return '<div><div class="gd-rating-text">' . __('Overall Rating', 'geodirectory') . ': <div class="rating">' . $rating . '</div></div>' . geodir_get_rating_stars($rating, $comment->comment_ID) . '</div><div class="description">' . $content . '</div>'; |
|
421 | + return '<div><div class="gd-rating-text">'.__('Overall Rating', 'geodirectory').': <div class="rating">'.$rating.'</div></div>'.geodir_get_rating_stars($rating, $comment->comment_ID).'</div><div class="description">'.$content.'</div>'; |
|
422 | 422 | } else |
423 | 423 | return $content; |
424 | 424 | } |
@@ -442,18 +442,18 @@ discard block |
||
442 | 442 | if (!$post_type) { |
443 | 443 | $post_type = get_post_type($post_id); |
444 | 444 | } |
445 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
445 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
446 | 446 | $post_newrating = geodir_get_post_rating($post_id, 1); |
447 | 447 | $post_newrating_count = geodir_get_review_count_total($post_id); |
448 | 448 | |
449 | 449 | |
450 | 450 | //$post_newrating = ( (float)$post_oldrating - (float)$old_rating ) + (float)$overall_rating ; |
451 | 451 | |
452 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) { |
|
452 | + if ($wpdb->get_var("SHOW TABLES LIKE '".$detail_table."'") == $detail_table) { |
|
453 | 453 | |
454 | 454 | $wpdb->query( |
455 | 455 | $wpdb->prepare( |
456 | - "UPDATE " . $detail_table . " SET |
|
456 | + "UPDATE ".$detail_table." SET |
|
457 | 457 | overall_rating = %f, |
458 | 458 | rating_count = %f |
459 | 459 | where post_id = %d", |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | * @package GeoDirectory |
473 | 473 | * @param int $post_id The post ID. |
474 | 474 | */ |
475 | - do_action('geodir_update_postrating',$post_id); |
|
475 | + do_action('geodir_update_postrating', $post_id); |
|
476 | 476 | |
477 | 477 | } |
478 | 478 | |
@@ -493,13 +493,13 @@ discard block |
||
493 | 493 | global $wpdb, $plugin_prefix; |
494 | 494 | |
495 | 495 | $post_type = get_post_type($post_id); |
496 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
496 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
497 | 497 | |
498 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $detail_table . "'") == $detail_table) { |
|
498 | + if ($wpdb->get_var("SHOW TABLES LIKE '".$detail_table."'") == $detail_table) { |
|
499 | 499 | |
500 | 500 | $post_ratings = $wpdb->get_var( |
501 | 501 | $wpdb->prepare( |
502 | - "SELECT overall_rating FROM " . $detail_table . " WHERE post_id = %d", |
|
502 | + "SELECT overall_rating FROM ".$detail_table." WHERE post_id = %d", |
|
503 | 503 | array($post_id) |
504 | 504 | ) |
505 | 505 | ); |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | |
534 | 534 | $reatings = $wpdb->get_row( |
535 | 535 | $wpdb->prepare( |
536 | - "SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
536 | + "SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id = %d", |
|
537 | 537 | array($comment_id) |
538 | 538 | ) |
539 | 539 | ); |
@@ -561,7 +561,7 @@ discard block |
||
561 | 561 | |
562 | 562 | $results = $wpdb->get_var( |
563 | 563 | $wpdb->prepare( |
564 | - "SELECT SUM(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
564 | + "SELECT SUM(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
565 | 565 | array($post_id) |
566 | 566 | ) |
567 | 567 | ); |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | global $wpdb; |
589 | 589 | $results = $wpdb->get_var( |
590 | 590 | $wpdb->prepare( |
591 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE user_id = %d AND status=1 AND overall_rating>0", |
|
591 | + "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE user_id = %d AND status=1 AND overall_rating>0", |
|
592 | 592 | array($user_id) |
593 | 593 | ) |
594 | 594 | ); |
@@ -626,7 +626,7 @@ discard block |
||
626 | 626 | |
627 | 627 | $results = $wpdb->get_var( |
628 | 628 | $wpdb->prepare( |
629 | - "SELECT COALESCE(avg(overall_rating),0) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
629 | + "SELECT COALESCE(avg(overall_rating),0) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
630 | 630 | array($post_id) |
631 | 631 | ) |
632 | 632 | ); |
@@ -654,7 +654,7 @@ discard block |
||
654 | 654 | |
655 | 655 | $results = $wpdb->get_var( |
656 | 656 | $wpdb->prepare( |
657 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
657 | + "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
658 | 658 | array($post_id) |
659 | 659 | ) |
660 | 660 | ); |
@@ -683,7 +683,7 @@ discard block |
||
683 | 683 | |
684 | 684 | $results = $wpdb->get_var( |
685 | 685 | $wpdb->prepare( |
686 | - "SELECT COUNT(overall_rating) FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
686 | + "SELECT COUNT(overall_rating) FROM ".GEODIR_REVIEW_TABLE." WHERE post_id = %d AND status=1 AND overall_rating>0", |
|
687 | 687 | array($post_id) |
688 | 688 | ) |
689 | 689 | ); |
@@ -712,7 +712,7 @@ discard block |
||
712 | 712 | |
713 | 713 | $reatings = $wpdb->get_var( |
714 | 714 | $wpdb->prepare( |
715 | - "SELECT overall_rating FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id = %d", |
|
715 | + "SELECT overall_rating FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id = %d", |
|
716 | 716 | array($comment_id) |
717 | 717 | ) |
718 | 718 | ); |
@@ -766,7 +766,7 @@ discard block |
||
766 | 766 | |
767 | 767 | $template = locate_template(array("geodirectory/reviews.php")); // Use theme template if available |
768 | 768 | if (!$template) { |
769 | - $template = dirname(__FILE__) . '/reviews.php'; |
|
769 | + $template = dirname(__FILE__).'/reviews.php'; |
|
770 | 770 | } |
771 | 771 | return $template; |
772 | 772 | } |
@@ -838,7 +838,7 @@ discard block |
||
838 | 838 | printf('<cite><b class="reviewer">%1$s</b> %2$s</cite>', |
839 | 839 | get_comment_author_link(), |
840 | 840 | // If current post author is also comment author, make it known visually. |
841 | - ($comment->user_id === $post->post_author) ? '<span>' . __('Post author', 'geodirectory') . '</span>' : '' |
|
841 | + ($comment->user_id === $post->post_author) ? '<span>'.__('Post author', 'geodirectory').'</span>' : '' |
|
842 | 842 | ); |
843 | 843 | echo "<span class='item'><small><span class='fn'>$post->post_title</span></small></span>"; |
844 | 844 | printf('<a href="%1$s"><time datetime="%2$s" class="dtreviewed">%3$s<span class="value-title" title="%2$s"></span></time></a>', |
@@ -896,7 +896,7 @@ discard block |
||
896 | 896 | global $post; |
897 | 897 | $post_types = geodir_get_posttypes(); |
898 | 898 | |
899 | - if (in_array(get_post_type($post_id), $post_types) && !geodir_cpt_has_rating_disabled((int)$post_id)) { |
|
899 | + if (in_array(get_post_type($post_id), $post_types) && !geodir_cpt_has_rating_disabled((int) $post_id)) { |
|
900 | 900 | $review_count = geodir_get_review_count_total($post_id); |
901 | 901 | return $review_count; |
902 | 902 | |
@@ -929,29 +929,29 @@ discard block |
||
929 | 929 | */ |
930 | 930 | function geodir_get_rating_stars($rating, $post_id, $small = false) |
931 | 931 | { |
932 | - if (!empty($post_id) && geodir_cpt_has_rating_disabled((int)$post_id)) { |
|
932 | + if (!empty($post_id) && geodir_cpt_has_rating_disabled((int) $post_id)) { |
|
933 | 933 | return NULL; |
934 | 934 | } |
935 | 935 | $a_rating = $rating / 5 * 100; |
936 | 936 | |
937 | 937 | if ($small) { |
938 | - $r_html = '<div class="rating"><div class="gd_rating_map" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star_small"></div></div></div>'; |
|
938 | + $r_html = '<div class="rating"><div class="gd_rating_map" data-average="'.$rating.'" data-id="'.$post_id.'"><div class="geodir_RatingColor" ></div><div class="geodir_RatingAverage_small" style="width: '.$a_rating.'%;"></div><div class="geodir_Star_small"></div></div></div>'; |
|
939 | 939 | } else { |
940 | 940 | if (function_exists('geodir_reviewrating_draw_overall_rating')) { |
941 | 941 | // Show rating stars from review rating manager |
942 | 942 | $r_html = geodir_reviewrating_draw_overall_rating($rating); |
943 | 943 | } else { |
944 | - $rating_img = '<img alt="rating icon" src="' . get_option('geodir_default_rating_star_icon') . '" />'; |
|
944 | + $rating_img = '<img alt="rating icon" src="'.get_option('geodir_default_rating_star_icon').'" />'; |
|
945 | 945 | |
946 | 946 | /* fix rating star for safari */ |
947 | 947 | $star_width = 23 * 5; |
948 | 948 | |
949 | 949 | if ($star_width > 0) { |
950 | - $attach_style = 'max-width:' . $star_width . 'px'; |
|
950 | + $attach_style = 'max-width:'.$star_width.'px'; |
|
951 | 951 | } else { |
952 | 952 | $attach_style = ''; |
953 | 953 | } |
954 | - $r_html = '<div class="geodir-rating" style="' . $attach_style . '"><div class="gd_rating_show" data-average="' . $rating . '" data-id="' . $post_id . '"><div class="geodir_RatingAverage" style="width: ' . $a_rating . '%;"></div><div class="geodir_Star">' . $rating_img . $rating_img . $rating_img . $rating_img . $rating_img . '</div></div></div>'; |
|
954 | + $r_html = '<div class="geodir-rating" style="'.$attach_style.'"><div class="gd_rating_show" data-average="'.$rating.'" data-id="'.$post_id.'"><div class="geodir_RatingAverage" style="width: '.$a_rating.'%;"></div><div class="geodir_Star">'.$rating_img.$rating_img.$rating_img.$rating_img.$rating_img.'</div></div></div>'; |
|
955 | 955 | } |
956 | 956 | } |
957 | 957 | return apply_filters('geodir_get_rating_stars_html', $r_html, $rating, 5); |
@@ -991,10 +991,10 @@ discard block |
||
991 | 991 | /* |
992 | 992 | * If Disqus plugin is active, do some fixes to show on blogs but no on GD post types |
993 | 993 | */ |
994 | -if(function_exists('dsq_can_replace')) { |
|
994 | +if (function_exists('dsq_can_replace')) { |
|
995 | 995 | remove_filter('comments_template', 'dsq_comments_template'); |
996 | 996 | add_filter('comments_template', 'dsq_comments_template', 100); |
997 | - add_filter('pre_option_disqus_active', 'geodir_option_disqus_active',10,1); |
|
997 | + add_filter('pre_option_disqus_active', 'geodir_option_disqus_active', 10, 1); |
|
998 | 998 | } |
999 | 999 | |
1000 | 1000 | |
@@ -1007,11 +1007,11 @@ discard block |
||
1007 | 1007 | * @param string $disqus_active Hook called before DB call for option so this is empty. |
1008 | 1008 | * @return string `1` if active `0` if disabled. |
1009 | 1009 | */ |
1010 | -function geodir_option_disqus_active($disqus_active){ |
|
1010 | +function geodir_option_disqus_active($disqus_active) { |
|
1011 | 1011 | global $post; |
1012 | 1012 | $all_postypes = geodir_get_posttypes(); |
1013 | 1013 | |
1014 | - if(isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type,$all_postypes)){ |
|
1014 | + if (isset($post->post_type) && is_array($all_postypes) && in_array($post->post_type, $all_postypes)) { |
|
1015 | 1015 | $disqus_active = '0'; |
1016 | 1016 | } |
1017 | 1017 | |
@@ -1055,17 +1055,17 @@ discard block |
||
1055 | 1055 | * |
1056 | 1056 | * @since 1.6.21 |
1057 | 1057 | */ |
1058 | -function geodir_jetpack_disable_comments(){ |
|
1058 | +function geodir_jetpack_disable_comments() { |
|
1059 | 1059 | //only run if jetpack installed |
1060 | - if(defined('JETPACK__VERSION')){ |
|
1060 | + if (defined('JETPACK__VERSION')) { |
|
1061 | 1061 | $post_types = geodir_get_posttypes(); |
1062 | - foreach($post_types as $post_type){ |
|
1063 | - add_filter('jetpack_comment_form_enabled_for_' . $post_type, '__return_false'); |
|
1062 | + foreach ($post_types as $post_type) { |
|
1063 | + add_filter('jetpack_comment_form_enabled_for_'.$post_type, '__return_false'); |
|
1064 | 1064 | } |
1065 | 1065 | } |
1066 | 1066 | } |
1067 | 1067 | |
1068 | -add_action('plugins_loaded','geodir_jetpack_disable_comments'); |
|
1068 | +add_action('plugins_loaded', 'geodir_jetpack_disable_comments'); |
|
1069 | 1069 | |
1070 | 1070 | /** |
1071 | 1071 | * Check whether the current post is open for reviews. |
@@ -1076,16 +1076,16 @@ discard block |
||
1076 | 1076 | * @param int $post_id The post ID. |
1077 | 1077 | * @return bool True if allowed otherwise False. |
1078 | 1078 | */ |
1079 | -function geodir_check_reviews_open( $open, $post_id ) { |
|
1080 | - if ( $open && $post_id && geodir_is_page( 'detail' ) ) { |
|
1081 | - if ( in_array( get_post_status( $post_id ), array( 'draft', 'pending', 'auto-draft', 'trash' ) ) ) { |
|
1079 | +function geodir_check_reviews_open($open, $post_id) { |
|
1080 | + if ($open && $post_id && geodir_is_page('detail')) { |
|
1081 | + if (in_array(get_post_status($post_id), array('draft', 'pending', 'auto-draft', 'trash'))) { |
|
1082 | 1082 | $open = false; |
1083 | 1083 | } |
1084 | 1084 | } |
1085 | 1085 | |
1086 | 1086 | return $open; |
1087 | 1087 | } |
1088 | -add_filter( 'comments_open', 'geodir_check_reviews_open', 10, 2 ); |
|
1088 | +add_filter('comments_open', 'geodir_check_reviews_open', 10, 2); |
|
1089 | 1089 | |
1090 | 1090 | /** |
1091 | 1091 | * Filter the [img] tags from comment. |
@@ -1097,11 +1097,11 @@ discard block |
||
1097 | 1097 | * @param array $args An array of arguments. |
1098 | 1098 | * @return string Filtered comment content. |
1099 | 1099 | */ |
1100 | -function geodir_remove_img_tags_from_comment( $comment_text, $comment, $args ) { |
|
1101 | - if ( !empty( $comment_text ) && strpos( $comment_text, '[img' ) !== false && strpos( get_post_type( $comment->comment_post_ID ), 'gd_' ) === 0 ) { |
|
1102 | - $comment_text = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_text ); |
|
1103 | - $comment_text = trim( $comment_text ); |
|
1100 | +function geodir_remove_img_tags_from_comment($comment_text, $comment, $args) { |
|
1101 | + if (!empty($comment_text) && strpos($comment_text, '[img') !== false && strpos(get_post_type($comment->comment_post_ID), 'gd_') === 0) { |
|
1102 | + $comment_text = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_text); |
|
1103 | + $comment_text = trim($comment_text); |
|
1104 | 1104 | } |
1105 | 1105 | return $comment_text; |
1106 | 1106 | } |
1107 | -add_filter( 'comment_text', 'geodir_remove_img_tags_from_comment', 10, 3 ); |
|
1108 | 1107 | \ No newline at end of file |
1108 | +add_filter('comment_text', 'geodir_remove_img_tags_from_comment', 10, 3); |
|
1109 | 1109 | \ No newline at end of file |