diff options
author | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-14 23:58:50 +0000 |
---|---|---|
committer | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-14 23:58:50 +0000 |
commit | 1448d112f2955099b7885f51de2f6b74628ad158 (patch) | |
tree | 4c8420c5c6dc4bb61d13557b625dac2623cf2666 /bin | |
parent | 9dde98b46c1af7db247f0e8acb4a96ac0a424e4b (diff) |
Using 'localhost' instead of $locale->text('localhost')
-{This line, and those below, will be ignored--
M admin.pl
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@603 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/admin.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/admin.pl b/bin/admin.pl index 8febcd1b..b032b02b 100755 --- a/bin/admin.pl +++ b/bin/admin.pl @@ -271,7 +271,7 @@ sub list_users { $href =~ s/ /%20/g; $member{$key}{templates} =~ s/^${LedgerSMB::Sysconfig::templates}\///; - $member{$key}{dbhost} = $locale->text('localhost') unless $member{$key}{dbhost}; + $member{$key}{dbhost} = 'localhost' unless $member{$key}{dbhost}; $column_data{login} = qq|<td><a href="$href">$key</a></td>|; $column_data{name} = qq|<td>$member{$key}{name}</td>|; |