diff options
Diffstat (limited to 'modules/locale.module')
-rw-r--r-- | modules/locale.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale.module b/modules/locale.module index becd67912..8450746f5 100644 --- a/modules/locale.module +++ b/modules/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"; |