diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-21 22:58:45 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-21 22:58:45 +0000 |
commit | 981ab3d002eaee83bd6668a48e26bab66f442b6e (patch) | |
tree | dbe10f784c868a45a6c97fed8800f36a68426092 | |
parent | cce5f5bd1e39970939efe0cd4a6bdfbf3efba005 (diff) |
Removing Locale::findsub
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@261 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | LedgerSMB/Form.pm | 7 | ||||
-rwxr-xr-x | bin/admin.pl | 4 | ||||
-rwxr-xr-x | bin/login.pl | 2 | ||||
-rwxr-xr-x | menu.pl | 2 |
4 files changed, 4 insertions, 11 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index a934440f..deb374d2 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -3139,13 +3139,6 @@ sub text { } -sub findsub { - - my ($self, $text) = @_; - return $text; -} - - sub date { my ($self, $myconfig, $date, $longformat) = @_; diff --git a/bin/admin.pl b/bin/admin.pl index 646caed0..deac8655 100755 --- a/bin/admin.pl +++ b/bin/admin.pl @@ -67,7 +67,7 @@ if (-f "bin/custom/$form->{script}") { if ($form->{action}) { &check_password unless $form->{action} eq 'logout'; - &{ $locale->findsub($form->{action}) }; + &{ $form->{action} }; } else { @@ -160,7 +160,7 @@ sub adminlogin { <tr> <th>|.$locale->text('Password').qq|</th> <td><input type="password" name="password" /></td> - <td><button type="submit" class="submit" name="action" value="login">|.$locale->text('Login').qq|"</button></td> + <td><button type="submit" class="submit" name="action" value="login">|.$locale->text('Login').qq|</button></td> </tr> </table> <input type="hidden" name="action" value="login" /> diff --git a/bin/login.pl b/bin/login.pl index d1712383..fbfdf431 100755 --- a/bin/login.pl +++ b/bin/login.pl @@ -66,7 +66,7 @@ $form->{titlebar} = "LedgerSMB ".$locale->text('Version'). " $form->{version}"; if ($form->{action}) { $form->{titlebar} .= " - $myconfig{name} - $myconfig{dbname}"; - &{ $locale->findsub($form->{action}) }; + &{ $form->{action} }; } else { &login_screen; @@ -138,7 +138,7 @@ if ($form->{action}) { if (substr($form->{action}, 0, 1) =~ /( |\.)/) { &{ $form->{nextsub} }; } else { - &{ $locale->findsub($form->{action}) }; + &{ $form->{action} }; } } else { |