2 PHP Notices to fix, with included source code
-
There are a couple of PHP notices that need cleaned up for those of us developing with WP_DEBUG set to true. I’ve included a diff to fix them (line 60, define $ppscontent before using it and check that the GET parameter exists on line 63 before using it).
— paged-post-slider.php (revision 3285)
+++ paged-post-slider.php (working copy)
@@ -58,9 +58,10 @@
function paged_post_the_content_filter( $content ) {global $multipage, $numpages, $page;
+ $ppscontent = ”;//Show Full Post If Full Post Option
– if($_GET[‘pps’] == ‘full_post’){
+ if(isset($_GET[‘pps’]) && $_GET[‘pps’] == ‘full_post’){
global $post;
$ppscontent .= wpautop($post->post_content);
if(get_option( ‘pps_show_all_link’)){
@@ -314,4 +315,3 @@
}
- The topic ‘2 PHP Notices to fix, with included source code’ is closed to new replies.