diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-08-20 03:32:57 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-08-20 03:32:57 +0000 |
commit | e61198a359d8e50f792d227caa3e9085c6cbdf90 (patch) | |
tree | 4b12b1a9f061bc7ce78bbbc2cc114d93fc9a8667 /bin | |
parent | 68ad0ad694ee8dddb75e7a0ecfd70db8f2fc03a8 (diff) |
POD for AM.pm and disabling audit trail deletion "feature".
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1460 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin')
-rw-r--r-- | bin/am.pl | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -2524,11 +2524,11 @@ sub audit_control { . qq| <input name=audittrail class=radio type=radio value="0" $checked{audittrailN}> | . $locale->text('No') . qq|</td> - </tr> + </tr><!-- SC: Disabling audit trail deletion <tr> <th align="right">| . $locale->text('Remove Audit trail up to') . qq|</th> <td><input name=removeaudittrail size=11 title="$myconfig{dateformat}"></td> - </tr> + </tr> --> </table> </td> </tr> @@ -2578,12 +2578,13 @@ sub doclose { $msg .= $locale->text('Audit trail disabled'); } - $msg .= "<p>"; - if ( $form->{removeaudittrail} ) { - $msg .= - $locale->text('Audit trail removed up to') . " " - . $locale->date( \%myconfig, $form->{removeaudittrail}, 1 ); - } +##SC: Disabling audit trail deletion +## $msg .= "<p>"; +## if ( $form->{removeaudittrail} ) { +## $msg .= +## $locale->text('Audit trail removed up to') . " " +## . $locale->date( \%myconfig, $form->{removeaudittrail}, 1 ); +## } $form->redirect($msg); |