diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-24 18:46:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-24 18:46:07 +0000 |
commit | a1222d6430f86ed83aa4d464f30fe2e9742a4d1d (patch) | |
tree | a426827765cd2078212b0729196392d09f1a17ba /modules/blog.module | |
parent | d264b4fc2bdd430e0b65ee55506f0f64b075edc4 (diff) | |
download | brdo-a1222d6430f86ed83aa4d464f30fe2e9742a4d1d.tar.gz brdo-a1222d6430f86ed83aa4d464f30fe2e9742a4d1d.tar.bz2 |
- Fixed translation bugs (reported by Alexander Schwartz)
Diffstat (limited to 'modules/blog.module')
-rw-r--r-- | modules/blog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog.module b/modules/blog.module index eeee99f8d..df53e2b49 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -100,7 +100,7 @@ function blog_page_user($uid = 0, $date = 0) { $output .= "<tr><td colspan=\"2\"><b><a href=\"module.php?mod=blog&id=$blog->uid&date=". mktime(23, 59, 59, date("n", $blog->timestamp), date("d", $blog->timestamp), date("Y", $blog->timestamp)) ."\">". format_date($blog->timestamp, custom, "d M Y") .":</a></b></td></tr>"; } - if ($user->uid && $user->name == $name) { + if ($user->uid && $user->uid == $uid) { $links[] = "<a href=\"submit.php?mod=blog&op=edit&id=$blog->nid\">". t("edit") ."</a>"; } |