summaryrefslogtreecommitdiff
path: root/modules/locale
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-06-23 11:09:40 +0000
committerDries Buytaert <dries@buytaert.net>2001-06-23 11:09:40 +0000
commit3754a54ed62db2d01a1d46a161ce95688b9c942e (patch)
treea10386b199fb9633b7e4fd1c155375a1595e4e4a /modules/locale
parent3e075294febed760b7e59a8b8a59dc2ebe8ccf7b (diff)
downloadbrdo-3754a54ed62db2d01a1d46a161ce95688b9c942e.tar.gz
brdo-3754a54ed62db2d01a1d46a161ce95688b9c942e.tar.bz2
- Small but significant improvements to block and box.module which
makes the ever-confusing "rehash modules" (see module.module) no longer needed, hence making module.module redundant. :-) - Removed module.module. - Renamed conf.module to system.module, and added some information about the available modules to system.module. - Various small changes.
Diffstat (limited to 'modules/locale')
-rw-r--r--modules/locale/locale.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.module b/modules/locale/locale.module
index becd67912..8450746f5 100644
--- a/modules/locale/locale.module
+++ b/modules/locale/locale.module
@@ -85,7 +85,7 @@ function locale_overview() {
$output .= " <TR><TH>string</TH><TH>languages</TH><TH COLSPAN=\"2\">operations</TH><TR>\n";
while ($locale = db_fetch_object($result)) {
$languages = locale_languages($locale);
- $output .= " <TR><TD>". check_output($locale->string) ."<BR><SMALL><I>$locale->location</I></SMALL></TD><TD ALIGN=\"center\">$languages</TD><TD><A HREF=\"admin.php?mod=locale&op=edit&id=$locale->id\">edit locale</A></TD><TD><A HREF=\"admin.php?mod=locale&op=delete&id=$locale->id\">delete locale</A></TD></TR>";
+ $output .= " <TR><TD>". check_output($locale->string) ."<BR><SMALL><I>$locale->location</I></SMALL></TD><TD ALIGN=\"center\">$languages</TD><TD NOWRAP><A HREF=\"admin.php?mod=locale&op=edit&id=$locale->id\">edit locale</A></TD><TD NOWRAP><A HREF=\"admin.php?mod=locale&op=delete&id=$locale->id\">delete locale</A></TD></TR>";
}
$output .= "</TABLE>\n";