diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-14 19:34:04 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-04-14 19:34:04 +0000 |
commit | 559276162095e907db21dd3da3c1bea13b4b7c62 (patch) | |
tree | eaa3a34b8261c88e0dffd48059ceb0cd0577251b /modules/blog | |
parent | 3ffe07f57c6fd177e2693d1e4b60178644036a4b (diff) | |
download | brdo-559276162095e907db21dd3da3c1bea13b4b7c62.tar.gz brdo-559276162095e907db21dd3da3c1bea13b4b7c62.tar.bz2 |
This is a major change to the system, needs more testing!
Committing Changes by Moshe Weitzman:
- admin_user_account(), user_edit(), and user_view() no longer have any
hard code for authentication modules. instead authentication modules
implement the _user hook.
- fixed a couple 'help' typos.
- linked the 'REGISTER' text in the login block to the register page.
this page now advertises DA better if site employs DA.
- admins may now edit everything about a user account (was a feature
request).
- user #1 may now login immediately, in addition to receiving his
password via email.
Other changes:
- modules and themes are now enabled/disabled in the administrative /
settings / modules | themes pages. Requires SQL update and things must
be enabled before your site returns to normal. TODO: enable all
functionality. (For now just do UPDATE system SET status = 1;)
- removed $themes from conf.php.
- added a $theme->system() function where theme can specify settings.
All themes in the Drupal CVS have been updated to use this.
- added _system hook to modules. TODO: update modules to use this.
- changed strange use of sprintf to the usual strtr. The disadvantage of
sprintf is that it requires translations to keep the string order,
which may not be possible in all languages.
- an invalid/nonexisting theme in a user profile will now fallback to the
BaseTheme instead of crashing.
Diffstat (limited to 'modules/blog')
-rw-r--r-- | modules/blog/blog.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 4036f154f..f2d59e67e 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -178,7 +178,7 @@ function blog_page_user($uid = 0, $date = 0, $all = 0) { $output .= "<a href=\"module.php?mod=blog&op=view&id=$account->uid\" title=\"". t("Show recent blogs by this user") ."\">". t("show recent blogs") ."</a>"; } - $theme->box(sprintf(t("%s's blog"), $account->name), $output); + $theme->box(strtr(t("%u's blog"), array("%u" => $account->name)), $output); } function blog_page_last() { @@ -302,7 +302,7 @@ function blog_link($type, $node = 0, $main) { $links[] = "<a href=\"module.php?mod=node&op=edit&id=$node->nid\" title=\"". t("Edit this blog entry.") ."\">". t("edit this blog") ."</a>"; } else { - $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". sprintf(t("Read %s's latest blog entries."), $node->name) ."\">". sprintf(t("%s's blog"), $node->name) ."</a>"; + $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". strtr(t("Read %u's latest blog entries."), array("%u" => $node->name)) ."\">". strtr(t("%u's blog"), array("%u", $node->name)) ."</a>"; } } |