From: <vb...@us...> - 2002-09-19 05:15:50
|
Update of /cvsroot/webnotes/webnotes In directory usw-pr-cvs1:/tmp/cvs-serv6789 Modified Files: action.php Log Message: - Fixed a typo in the name of note_update_visibility() - Added to the phpnet theme the [ actions ] to change the visibility of a note. - Display in phpnet theme the visibility of notes if the user can moderate. - Filtering all notes in the pages based on access rights, rather than only viewing accepted independent of access rights. Index: action.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/action.php,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- action.php 19 Sep 2002 04:15:47 -0000 1.5 +++ action.php 19 Sep 2002 05:15:47 -0000 1.6 @@ -30,7 +30,7 @@ if ( isset( $f_note_id )) { if ( 'accept' === $f_action ) { note_accept( $f_note_id ); - } else if ( 'reject' === $f_action ) { + } else if ( 'decline' === $f_action ) { note_decline( $f_note_id ); } else if ( 'archive' === $f_action ) { note_archive( $f_note_id ); |