ben81
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: 2.5-RC1: PHP Safe Mode breaks visual editorUpdate: I can temporarily fix this by deleting the uploads folder comletely and not using the upload functionality. I also tried creating the folders “uploads” and “js_cache” myself via FTP with all the necessary permissions but still no luck …
Forum: Fixing WordPress
In reply to: Upgraded to 2.1 – RSS feed shows summary onlyUh, I have to admit that I didn’t checked it out as promised. 😉 But it’s just a plugin, so it won’t take much time to try it out.
Forum: Fixing WordPress
In reply to: Upgraded to 2.1 – RSS feed shows summary onlyThanks – I’ll try this when I get home from work (and hopefully mark this thread as “resolved” 😉 ).
Forum: Fixing WordPress
In reply to: comments_link does not accept $file argumentSorry, hit the return key before entering the text … so, here it is:
I’m trying to link to a different page than the standard index.php when clicking on comments. The problem is, that the comments_link function doesn’t seem to accept die $file argument. No matter what file location I pass, the location still remains the same. Is this a bug? When I look at the function, there seems to be no use for the $file argument…
function comments_link($file='', $echo=true) {
global $id, $pagenow;
if ($file == '') $file = $pagenow;
if ($file == '/') $file = '';
if (!$echo) return get_permalink() . '#comments';
else echo get_permalink() . '#comments';
}
Can anyone help me on this?