Call to flickrRSS ends the page.
The group you are posting to is a
Usenet group . Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
From:
Rubin110 <ru... @starset.net>
Date: Sat, 13 Mar 2010 16:46:18 -0800 (PST)
Local: Sat, Mar 13 2010 7:46 pm
Subject: Call to flickrRSS ends the page.
Hi there. I'm running Wordpress Trunk (rev 13695) off of Dreamhost. I
have <?php get_flickrRSS(); ?> in my header. Once any page with the
header loads, it ends right at the end of the first <ul> tag generated
by flickrRSS. Any help with this would be appreciated. Thanks.
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Rubin110 <rubinstar... @gmail.com>
Date: Sat, 13 Mar 2010 16:48:30 -0800 (PST)
Local: Sat, Mar 13 2010 7:48 pm
Subject: Re: Call to flickrRSS ends the page.
Should also note I don't see anything interesting in error.log under
apache.
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Rubin110 <rubinstar... @gmail.com>
Date: Sat, 13 Mar 2010 17:22:23 -0800 (PST)
Local: Sat, Mar 13 2010 8:22 pm
Subject: Re: Call to flickrRSS ends the page.
Ok, looks like this issue was introduced in rev 132340. Here's the
diff. Again any help would be appreciated.
$ svn diff -r 13239:13240 rubin.starset.net/ Index: rubin.starset.net/wp-includes/post.php =================================================================== --- rubin.starset.net/wp-includes/post.php (revision 13239) +++ rubin.starset.net/wp-includes/post.php (revision 13240) @@ -3930,7 +3930,7 @@ * @param bool $clean_terms optional. Whether to clean terms cache */ function clean_attachment_cache($id, $clean_terms = false) { - global $_wp_suspend_cache_invalidation, $wpdb; + global $_wp_suspend_cache_invalidation;
if ( !empty($_wp_suspend_cache_invalidation) ) return; Index: rubin.starset.net/wp-includes/functions.php =================================================================== --- rubin.starset.net/wp-includes/functions.php (revision 13239) +++ rubin.starset.net/wp-includes/functions.php (revision 13240) @@ -1442,15 +1442,12 @@ /** * Walks the array while sanitizing the contents. * - * @uses $wpdb Used to sanitize values * @since 0.71 * * @param array $array Array to used to walk while sanitizing contents. * @return array Sanitized $array. */ function add_magic_quotes( $array ) { - global $wpdb; - foreach ( (array) $array as $k => $v ) { if ( is_array( $v ) ) { $array[$k] = add_magic_quotes( $v ); Index: rubin.starset.net/wp-includes/link-template.php =================================================================== --- rubin.starset.net/wp-includes/link-template.php (revision 13239) +++ rubin.starset.net/wp-includes/link-template.php (revision 13240) @@ -1076,7 +1076,7 @@ * @return object */ function get_boundary_post($in_same_cat = false, $excluded_categories = '', $start = true) { - global $post, $wpdb; + global $post;
if ( empty($post) || !is_single() || is_attachment() ) return null; Index: rubin.starset.net/wp-includes/formatting.php =================================================================== --- rubin.starset.net/wp-includes/formatting.php (revision 13239) +++ rubin.starset.net/wp-includes/formatting.php (revision 13240) @@ -1208,11 +1208,8 @@ * @return string Returns a string escaped with slashes. */ function addslashes_gpc($gpc) { - global $wpdb; - - if (get_magic_quotes_gpc()) { + if ( get_magic_quotes_gpc() ) $gpc = stripslashes($gpc); - }
return esc_sql($gpc); } Index: rubin.starset.net/wp-includes/rss.php =================================================================== --- rubin.starset.net/wp-includes/rss.php (revision 13239) +++ rubin.starset.net/wp-includes/rss.php (revision 13240) @@ -715,7 +715,6 @@ Output: true on sucess
\*=======================================================================*/ function set ($url, $rss) { - global $wpdb; $cache_option = 'rss_' . $this->file_name( $url );
set_transient($cache_option, $rss, $this->MAX_AGE); Index: rubin.starset.net/wp-includes/ms-functions.php =================================================================== --- rubin.starset.net/wp-includes/ms-functions.php (revision 13239) +++ rubin.starset.net/wp-includes/ms-functions.php (revision 13240) @@ -1051,8 +1051,6 @@ }
function get_user_id_from_string( $string ) { - global $wpdb; - $user_id = 0; if ( is_email( $string ) ) { $user = get_user_by('email', $string);
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
eightface <kel... @gmail.com>
Date: Sat, 20 Mar 2010 04:48:16 -0700 (PDT)
Local: Sat, Mar 20 2010 7:48 am
Subject: Re: Call to flickrRSS ends the page.
Sorry, been quite busy this week. Are you still having issues, or has
it been fixed in a recent trunk build? I can try installing the trunk
build on my sandbox site and see if I get the same issues.
On Mar 14, 1:22 am, Rubin110 <rubinstar... @gmail.com> wrote:
> Ok, looks like this issue was introduced in rev 132340. Here's the
> diff. Again any help would be appreciated.
> $ svn diff -r 13239:13240 rubin.starset.net/ > Index: rubin.starset.net/wp-includes/post.php > =================================================================== > --- rubin.starset.net/wp-includes/post.php (revision 13239) > +++ rubin.starset.net/wp-includes/post.php (revision 13240) > @@ -3930,7 +3930,7 @@ > * @param bool $clean_terms optional. Whether to clean terms cache > */ > function clean_attachment_cache($id, $clean_terms = false) { > - global $_wp_suspend_cache_invalidation, $wpdb; > + global $_wp_suspend_cache_invalidation;
> if ( !empty($_wp_suspend_cache_invalidation) ) > return; > Index: rubin.starset.net/wp-includes/functions.php > =================================================================== > --- rubin.starset.net/wp-includes/functions.php (revision 13239) > +++ rubin.starset.net/wp-includes/functions.php (revision 13240) > @@ -1442,15 +1442,12 @@ > /** > * Walks the array while sanitizing the contents. > * > - * @uses $wpdb Used to sanitize values > * @since 0.71 > * > * @param array $array Array to used to walk while sanitizing > contents. > * @return array Sanitized $array. > */ > function add_magic_quotes( $array ) { > - global $wpdb; > - > foreach ( (array) $array as $k => $v ) { > if ( is_array( $v ) ) { > $array[$k] = add_magic_quotes( $v ); > Index: rubin.starset.net/wp-includes/link-template.php > =================================================================== > --- rubin.starset.net/wp-includes/link-template.php (revision > 13239) > +++ rubin.starset.net/wp-includes/link-template.php (revision > 13240) > @@ -1076,7 +1076,7 @@ > * @return object > */ > function get_boundary_post($in_same_cat = false, $excluded_categories > = '', $start = true) { > - global $post, $wpdb; > + global $post;
> if ( empty($post) || !is_single() || is_attachment() ) > return null; > Index: rubin.starset.net/wp-includes/formatting.php > =================================================================== > --- rubin.starset.net/wp-includes/formatting.php (revision > 13239) > +++ rubin.starset.net/wp-includes/formatting.php (revision > 13240) > @@ -1208,11 +1208,8 @@ > * @return string Returns a string escaped with slashes. > */ > function addslashes_gpc($gpc) { > - global $wpdb; > - > - if (get_magic_quotes_gpc()) { > + if ( get_magic_quotes_gpc() ) > $gpc = stripslashes($gpc); > - }
> return esc_sql($gpc); > } > Index: rubin.starset.net/wp-includes/rss.php > =================================================================== > --- rubin.starset.net/wp-includes/rss.php (revision 13239) > +++ rubin.starset.net/wp-includes/rss.php (revision 13240) > @@ -715,7 +715,6 @@ > Output: true on sucess
> \*=======================================================================*/ > function set ($url, $rss) { > - global $wpdb; > $cache_option = 'rss_' . $this->file_name( $url );
> set_transient($cache_option, $rss, $this->MAX_AGE); > Index: rubin.starset.net/wp-includes/ms-functions.php > =================================================================== > --- rubin.starset.net/wp-includes/ms-functions.php (revision > 13239) > +++ rubin.starset.net/wp-includes/ms-functions.php (revision > 13240) > @@ -1051,8 +1051,6 @@ > }
> function get_user_id_from_string( $string ) { > - global $wpdb; > - > $user_id = 0; > if ( is_email( $string ) ) { > $user = get_user_by('email', $string);
You must
Sign in before you can post messages.
You do not have the permission required to post.
From:
Rubin110 <rubinstar... @gmail.com>
Date: Wed, 7 Apr 2010 09:46:04 -0700 (PDT)
Local: Wed, Apr 7 2010 12:46 pm
Subject: Re: Call to flickrRSS ends the page.
On Mar 20, 4:48 am, eightface <kel
... @gmail.com> wrote:
> Sorry, been quite busy this week. Are you still having issues, or has > it been fixed in a recent trunk build? I can try installing the trunk > build on my sandbox site and see if I get the same issues.
The issue is no longer reproducible with rev 14032 of Wordpress trunk.
Thanks!
You must
Sign in before you can post messages.
You do not have the permission required to post.