|
From: <ssc...@us...> - 2003-04-10 23:15:55
|
Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv13475
Modified Files:
Tag: v0/18/1
HTML.pm
Log Message:
Hopefully fix bugs, and some bleeding edge issues:
[ 708387 ] unrequested History deletion
[ 703364 ] 0.18.1: history doesn't go back far enough
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.98.2.4
retrieving revision 1.98.2.5
diff -C2 -d -r1.98.2.4 -r1.98.2.5
*** HTML.pm 27 Mar 2003 04:12:09 -0000 1.98.2.4
--- HTML.pm 10 Apr 2003 23:15:46 -0000 1.98.2.5
***************
*** 171,177 ****
change_session_key($self);
- $self->remove_mail_files();
- $self->calculate_today();
-
return 1;
}
--- 171,174 ----
***************
*** 187,190 ****
--- 184,192 ----
{
my ( $self ) = @_;
+
+ # This needs to happen after the configuration is loaded to avoid using only defaults
+
+ $self->remove_mail_files();
+ $self->calculate_today();
# Load the current configuration from disk and then load up the
|