|
From: Jon O. <jon...@us...> - 2006-09-14 20:08:52
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27103/modules/mx_pafiledb/pafiledb/includes Modified Files: functions_pafiledb.php Log Message: Is_new fix Index: functions_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_pafiledb.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** functions_pafiledb.php 24 Aug 2006 21:13:32 -0000 1.43 --- functions_pafiledb.php 14 Sep 2006 20:08:49 -0000 1.44 *************** *** 1075,1079 **** // =================================================== $is_new = false; ! if ( time() - ( $pafiledb_config['settings_newdays'] * 24 * 60 * 60 ) < $file_rowset[$i]['file_time'] ) { $is_new = true; --- 1075,1079 ---- // =================================================== $is_new = false; ! if ( (time() - ( $pafiledb_config['settings_newdays'] * 24 * 60 * 60 )) < $file_rowset[$i]['file_time'] ) { $is_new = true; |