bronski
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_get_archives() limits number of postsTo be precise it is not the function wp_get_archives() but the index-loop.
When you access your archive like http://bronski.net/wp-archiv/2004/07/ , in my case, I should get all 89 posts made in July. Instead I only get the last 10.
The month-view is a special case of index so it should not be limited, shouldn’t it?Forum: Fixing WordPress
In reply to: wp_get_archives() limits number of postsThanks, but wp_get_archives() is not in the loop.
Forum: Fixing WordPress
In reply to: pubDate in wp-rss2.phpI think not. what is in a feed? title, excerpt, maybe the full text, but usually none of the things that get localized like buttons, number of trackbacks, comments, etc.
pubDate is supposed to be RFC-822 compliant, and that seems to imply english dateformat. at least feed-validators complain about localized pubDates.Forum: Fixing WordPress
In reply to: pubDate in wp-rss2.phpbeat me, that didn’t work. it stays German.
Forum: Fixing WordPress
In reply to: Improper behavior when saving a draftI remember that happening some time ago, but with 5/19 it works as suspected.
Forum: Fixing WordPress
In reply to: Trying to use Ectohope you’re not on a windows-box…
on a unix-box:patch xmlrpc.php < xmlrpc.patch
but as this patch was made for one of the nightlies be prepared to get some errors – they will be safed to a file ending in .rejForum: Fixing WordPress
In reply to: Cannot redeclare class streamreaderAh, a new version of wp-blog-header.php just showed up in CVS and that streams.php-error is fixed now – thanks!
The foreach-one still happens, though.Forum: Fixing WordPress
In reply to: What is the MO file? Where can I get it?The PO-file can be edited ith any texteditor (with special programms as poedit, too, of course).
I justmsgfmted it_IT.po to it_IT.mo, fetch it at http://bronski.net/data/it_IT.mo – I hope it works, if not say so, the accented characters might have to be converted…
The language can be changed whenever you like. You just have to set the correct WPLANG in wp-config.php (note: sometimes that doesn’t seem to work. solution is to set $locale in wp-includes/wp-l10n.php instead.)Forum: Fixing WordPress
In reply to: Cannot redeclare class streamreaderand another error, this time with wp-admin/post.php:
Invalid argument supplied for foreach() in /path/to/wordpress/wp-admin/admin-functions.php on line 277
This is the pull down menu near “Add a new custom field to this post”.
Don’t know what’s wrong here…Forum: Fixing WordPress
In reply to: “Edit this” linkAh, I see. Thanks for pointing it out, that answers my question.
Forum: Fixing WordPress
In reply to: 1.2B non mod_rewrite urls?You probably removed too many mod_rewrite-rules. The feeds dont get generated via index.php but via wp-feed.php, wp-trackback.php
Forum: Fixing WordPress
In reply to: wp-login does not work with Safaritcloer: 1.02 had only 3 mod_rewrite rules, and 1.2 almost a dozen. But anyway… as several people complain about this there really seems to be an issue.
Forum: Fixing WordPress
In reply to: wp-login does not work with SafariOS X 10.3.3 and Safari 1.2.1 here, too – and no problem.
Have you updated your mod_rewrite-rules?Forum: Fixing WordPress
In reply to: functions in wp-comments.phpThis is only beautification, but anyway…
Another one in index.php, line 40, there is
edit_post_link();
Following a similar occurance in wp-comments.php I changed it to
edit_post_link(__("Edit This"), ' |');
Vice versacomment_author_link()(line 39 in wp-comments.php is wrapped in<cite>...</cite>when in index.phpthe_author()is wrapped in<div class="meta">...</div>– beautification again.