From: <vb...@us...> - 2002-10-06 15:23:39
|
Update of /cvsroot/webnotes/webnotes In directory usw-pr-cvs1:/tmp/cvs-serv15062 Modified Files: action.php note_preview_page.php Log Message: - Fixed a parsing error in e-mail api. - Fixed an undefined variable when using the action.php upon indexing/un-indexing a page. - Fixed a problem with the timestamp in the preview page. - Removed the Manage Pages from the menu. - Updated the Change Log. - Updated the Install document. - Updated db_generate.sql / db_upgrade.sql. - Changed the default password encryption to be MD5. Index: action.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/action.php,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- action.php 3 Oct 2002 00:23:19 -0000 1.10 +++ action.php 6 Oct 2002 15:23:36 -0000 1.11 @@ -61,6 +61,8 @@ if ( 'index' === $f_action ) { page_add( $c_page_id ); } + + $t_url = $HTTP_REFERER; } if ( isset( $f_wait ) ) { Index: note_preview_page.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/note_preview_page.php,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- note_preview_page.php 26 Sep 2002 06:55:04 -0000 1.11 +++ note_preview_page.php 6 Oct 2002 15:23:36 -0000 1.12 @@ -36,7 +36,7 @@ $t_note['id'] = '0'; $t_note['email']= string_prepare_note_for_viewing( $f_email ); - $t_note['date'] = date ($g_date_format); + $t_note['date'] = time(); $t_note['note'] = string_prepare_note_for_viewing( $f_note ); $t_page_data = array(); |