From: <vb...@us...> - 2002-09-18 06:55:07
|
Update of /cvsroot/webnotes/webnotes In directory usw-pr-cvs1:/tmp/cvs-serv18631 Modified Files: note_add.php note_add_page.php Log Message: Started working on the access levels infrastructure Index: note_add.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/note_add.php,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- note_add.php 13 Sep 2002 07:17:53 -0000 1.14 +++ note_add.php 18 Sep 2002 06:55:02 -0000 1.15 @@ -10,6 +10,8 @@ require_once( 'core' . DIRECTORY_SEPARATOR . 'api.php' ); + #access_ensure_check_action( ACTION_NOTES_SUBMIT ); + $f_page_id = gpc_get_int( 'f_page_id' ); $f_email = stripslashes( gpc_get_string( 'f_email' ) ); $f_note = stripslashes( gpc_get_string( 'f_note' ) ); Index: note_add_page.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/note_add_page.php,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- note_add_page.php 15 Sep 2002 13:20:56 -0000 1.16 +++ note_add_page.php 18 Sep 2002 06:55:02 -0000 1.17 @@ -10,6 +10,8 @@ require_once( 'core' . DIRECTORY_SEPARATOR . 'api.php' ); + #access_ensure_check_action( ACTION_NOTES_SUBMIT ); + print_html_top(); print_head_top(); print_title( $g_window_title ); |