unsubscribe On Sun, Jun 29, 2008 at 8:00 AM, <[EMAIL PROTECTED]> wrote:
> Send wp-testers mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.automattic.com/mailman/listinfo/wp-testers > or, via email, send a message with subject or body 'help' to > [EMAIL PROTECTED] > > You can reach the person managing the list at > [EMAIL PROTECTED] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of wp-testers digest..." > > > Today's Topics: > > 1. Re: Where do I get the latest nightly build? (Kirk M) > 2. Re: WP 2.6 beta-1 feeback (Kirk M) > 3. RE: WP 2.6 beta-1 feeback (Nick Bohle) > 4. Re: WP 2.6 beta-1 feeback (Kirk M) > 5. Re: Update 2.5.1 to 2.5.1? (Brian Layman) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 28 Jun 2008 09:23:59 -0400 > From: Kirk M <[EMAIL PROTECTED]> > Subject: Re: [wp-testers] Where do I get the latest nightly build? > To: [email protected] > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=UTF-8; format=flowed > > Aaron, > > You can always find the latest Trunk build here: > > http://trac.wordpress.org/browser/trunk > > Scroll down to the bottom of the page and click the "Zip Archive" link > under "Download in other formats" and you'll get a Zip file of the > latest build. > > > > Aaron Law wrote: > > Dear all, > > > > The nightly build on http://static.wordpress.org/builds/ seems no longer > be > > updated since 2008-05-04, right? > > > > Where can I get the most updated nightly builds now? > > > > On 4/28/08, Mike Spears<[EMAIL PROTECTED]> wrote: > > > >> Thank You > >> > >> There are 10 types of people in this world, those that understand binary > >> and > >> those who don't. > >> > >> > >> -----Original Message----- > >> From: [EMAIL PROTECTED] > >> [mailto:[EMAIL PROTECTED] On Behalf Of Aaron > Harun > >> Sent: Sunday, April 27, 2008 6:53 PM > >> To: [email protected] > >> Subject: Re: [wp-testers] Where do I get the latest nightly build? > >> > >> Nghtly versions are at > >> http://static.wordpress.org/builds/ . > >> > >> The link to download the bleeding edge is on the bottom of > >> http://trac.wordpress.org/browser/trunk . > >> > >> > >> Aaron. > >> _______________________________________________ > >> wp-testers mailing list > >> [email protected] > >> http://lists.automattic.com/mailman/listinfo/wp-testers > >> > >> > >> > >> __________ Information from ESET NOD32 Antivirus, version of virus > >> signature > >> database 3058 (20080427) __________ > >> > >> The message was checked by ESET NOD32 Antivirus. > >> > >> http://www.eset.com > >> > >> > >> > >> __________ Information from ESET NOD32 Antivirus, version of virus > >> signature > >> database 3058 (20080427) __________ > >> > >> The message was checked by ESET NOD32 Antivirus. > >> > >> http://www.eset.com > >> > >> > >> > >> _______________________________________________ > >> wp-testers mailing list > >> [email protected] > >> http://lists.automattic.com/mailman/listinfo/wp-testers > >> > >> > > > > > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > wp-testers mailing list > > [email protected] > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > ------------------------------ > > Message: 2 > Date: Sat, 28 Jun 2008 11:20:16 -0400 > From: Kirk M <[EMAIL PROTECTED]> > Subject: Re: [wp-testers] WP 2.6 beta-1 feeback > To: [email protected] > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi Nick, > > I've been checking out the functions of the Simple Tags plugin that I > have installed in two WP 2.6 beta 1 sites and for the life of me I can't > find a problem, the plugin seems to be working fine. Could you let me > know what you're seeing so I know what I'm looking for? > > Nick Bohle wrote: > > Hi! > > > > I've just installed WP 2.6 beta-1 on my test server and I have to say: > Great > > job (again). > > > > There was one little problem with the popular Simple Tags plug-in. It > only > > works when the version check-up is changed to 2.6. Already informed the > > plug-in author Amaury Balmer about this... > > > > And I had another (bigger) problem with my image.php template. The > > navigation links to the other images do not work anymore. There are ARRAY > > errors. I have to say that I changed the image thumbnail links to text > links > > with my functions.php (with the help of mfields.org). > > > > The code in my functions.php: > > > > function mf_previous_image_link( $link_text ) { > > print mf_adjacent_image_link( $link_text, true ); > > } > > > > function mf_next_image_link( $link_text ) { > > print mf_adjacent_image_link( $link_text, false ); > > } > > > > function mf_adjacent_image_link( $link_text, $prev = true ) { > > global $post; > > $post = get_post($post); > > $attachments = > > > array_values(get_children("post_parent=$post->post_parent&post_type=attachme > > nt&post_mime_type=image&orderby=\"menu_order ASC, ID ASC\"")); > > > > foreach ( $attachments as $k => $attachment ) > > if ( $attachment->ID == $post->ID ) > > break; > > > > $k = $prev ? $k - 1 : $k + 1; > > > > if ( isset($attachments[$k]) ) > > return '<a href="' . get_attachment_link( $attachments[$k]->ID ) > . > > '">' . $link_text .'</a>'; > > else > > return false; > > }; > > > > Could anyone give me a hint how I good make the text links work in WP > 2.6? > > > > Thank you, > > Nick > > > > > > > > _______________________________________________ > > wp-testers mailing list > > [email protected] > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > > > ------------------------------ > > Message: 3 > Date: Sat, 28 Jun 2008 19:12:05 +0200 > From: "Nick Bohle" <[EMAIL PROTECTED]> > Subject: RE: [wp-testers] WP 2.6 beta-1 feeback > To: <[email protected]> > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="us-ascii" > > Hi Kirk! > > I am using Simple Tags 1.5.3. > > When I upgraded to WordPress 2.6 beta-1, all my back-end pages included the > yellow notice bar: > > "Simple Tags can't work with this WordPress version! You must use Simple > Tagging Plugin for it to work." > > And besides, the related posts function on my single.php also did not > work... > > But I fixed the problem by changing the following code inside the > simple-tags.php (line 35): > > global $wp_version; > if ( strpos($wp_version, '2.5') !== false ) { > > to > > global $wp_version; > if ( strpos($wp_version, '2.6') !== false ) { > > > I am still having problems with changing the image navigation thumbs to > text > links (mentioned below). Could anyone give me a hint about this? > > Cheers > Nick > > > > -----Original Message----- > > From: [EMAIL PROTECTED] [mailto:wp-testers- > > [EMAIL PROTECTED] On Behalf Of Kirk M > > Sent: Saturday, June 28, 2008 5:20 PM > > To: [email protected] > > Subject: Re: [wp-testers] WP 2.6 beta-1 feeback > > > > Hi Nick, > > > > I've been checking out the functions of the Simple Tags plugin that I > > have installed in two WP 2.6 beta 1 sites and for the life of me I > > can't > > find a problem, the plugin seems to be working fine. Could you let me > > know what you're seeing so I know what I'm looking for? > > > > Nick Bohle wrote: > > > Hi! > > > > > > I've just installed WP 2.6 beta-1 on my test server and I have to > > say: Great > > > job (again). > > > > > > There was one little problem with the popular Simple Tags plug-in. It > > only > > > works when the version check-up is changed to 2.6. Already informed > > the > > > plug-in author Amaury Balmer about this... > > > > > > And I had another (bigger) problem with my image.php template. The > > > navigation links to the other images do not work anymore. There are > > ARRAY > > > errors. I have to say that I changed the image thumbnail links to > > text links > > > with my functions.php (with the help of mfields.org). > > > > > > The code in my functions.php: > > > > > > function mf_previous_image_link( $link_text ) { > > > print mf_adjacent_image_link( $link_text, true ); > > > } > > > > > > function mf_next_image_link( $link_text ) { > > > print mf_adjacent_image_link( $link_text, false ); > > > } > > > > > > function mf_adjacent_image_link( $link_text, $prev = true ) { > > > global $post; > > > $post = get_post($post); > > > $attachments = > > > array_values(get_children("post_parent=$post- > > >post_parent&post_type=attachme > > > nt&post_mime_type=image&orderby=\"menu_order ASC, ID ASC\"")); > > > > > > foreach ( $attachments as $k => $attachment ) > > > if ( $attachment->ID == $post->ID ) > > > break; > > > > > > $k = $prev ? $k - 1 : $k + 1; > > > > > > if ( isset($attachments[$k]) ) > > > return '<a href="' . get_attachment_link( $attachments[$k]- > > >ID ) . > > > '">' . $link_text .'</a>'; > > > else > > > return false; > > > }; > > > > > > Could anyone give me a hint how I could make the text links work in WP > > 2.6? > > > > > > Thank you, > > > Nick > > > > > > > > > > > > _______________________________________________ > > > wp-testers mailing list > > > [email protected] > > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > > > > _______________________________________________ > > wp-testers mailing list > > [email protected] > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > ------------------------------ > > Message: 4 > Date: Sat, 28 Jun 2008 14:58:18 -0400 > From: Kirk M <[EMAIL PROTECTED]> > Subject: Re: [wp-testers] WP 2.6 beta-1 feeback > To: [email protected] > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hey Nick, > > I took a quick look and found that Simple Tags version 1.5.3 is an old > version. The current version is 1.5.7 (I think it was updated 1 to 2 > weeks ago) which works with both 2.5 and 2.6 (both versions included in > simple-tags.php). Not to sure why your Plugins page isn't showing that > an update is available. > > Sorry I can't help you with your image link conundrum. I'm still > attempting to coerce my old brain to learn PHP and CSS past the stage of > copy and paste. ;) > > > Nick Bohle wrote: > > Hi Kirk! > > > > I am using Simple Tags 1.5.3. > > > > When I upgraded to WordPress 2.6 beta-1, all my back-end pages included > the > > yellow notice bar: > > > > "Simple Tags can't work with this WordPress version! You must use Simple > > Tagging Plugin for it to work." > > > > And besides, the related posts function on my single.php also did not > > work... > > > > But I fixed the problem by changing the following code inside the > > simple-tags.php (line 35): > > > > global $wp_version; > > if ( strpos($wp_version, '2.5') !== false ) { > > > > to > > > > global $wp_version; > > if ( strpos($wp_version, '2.6') !== false ) { > > > > > > I am still having problems with changing the image navigation thumbs to > text > > links (mentioned below). Could anyone give me a hint about this? > > > > Cheers > > Nick > > > > > ------------------------------ > > Message: 5 > Date: Sat, 28 Jun 2008 16:04:25 -0400 > From: "Brian Layman" <[EMAIL PROTECTED]> > Subject: Re: [wp-testers] Update 2.5.1 to 2.5.1? > To: [email protected] > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=ISO-8859-1 > > I've seen it happen when you have object caching turned on. The code > should > handle that but I've seen it fail. > > On 6/27/08, JT Allison <[EMAIL PROTECTED]> wrote: > > > > I'm using 2.5.1 and not getting any prompts. > > > > > > > > JT > > > > > > ----------------------------------- > > > > JT Allison > > Office: (415) 287-9628 > > Mobile: (508) 566-1741 > > [EMAIL PROTECTED] > > http://www.jtallison.com > > twitter.com/digitalslurp > > > > > > On Thu, Jun 26, 2008 at 11:59 PM, Will Garcia <[EMAIL PROTECTED]> wrote: > > > This may be off-topic and I may already have been hacked, but I'd like > to > > > know for sure it wasn't from WP's end. > > > > > > My WP install is the latest stable version afaik (2.5.1) yet I am > > prompted > > > to update to 2.5.1. > > > > > > Is it just me or is everyone using the stable version having this > > problem? > > > > > > TIA > > > > > > -- > > > Will Garcia > > > http://will.ph/ > > > _______________________________________________ > > > wp-testers mailing list > > > [email protected] > > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > _______________________________________________ > > wp-testers mailing list > > [email protected] > > http://lists.automattic.com/mailman/listinfo/wp-testers > > > > > ------------------------------ > > _______________________________________________ > wp-testers mailing list > [email protected] > http://lists.automattic.com/mailman/listinfo/wp-testers > > > End of wp-testers Digest, Vol 40, Issue 24 > ****************************************** > _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
