From: <vb...@us...> - 2002-09-22 04:17:43
|
Update of /cvsroot/webnotes/webnotes/core In directory usw-pr-cvs1:/tmp/cvs-serv9804/core Modified Files: note_api.php page_api.php Log Message: - Fixed the [ edit ] action in inline moderation - Remove the [ action x ], if the note is already in state x. - Remove the <small>...</small> tags from around the actions. - In manage notes, pages are now sorted in descending order according to last updated. - Fixed a problem with the cross referencing where preserve spaces was called after they were created and hence <a href -> was replaced with <anbsp;href. - Fixed a problem with the size of the login form (introduced in the last commit). Index: note_api.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/core/note_api.php,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- note_api.php 22 Sep 2002 02:47:16 -0000 1.25 +++ note_api.php 22 Sep 2002 04:17:38 -0000 1.26 @@ -210,7 +210,7 @@ $notes[] = $info; } - + return( $notes ); } ### -------------------- Index: page_api.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/core/page_api.php,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- page_api.php 22 Sep 2002 02:47:16 -0000 1.16 +++ page_api.php 22 Sep 2002 04:17:38 -0000 1.17 @@ -58,7 +58,7 @@ $c_order = ''; } - $query = "SELECT * + $query = "SELECT *, UNIX_TIMESTAMP(last_updated) as last_updated FROM " . config_get( 'phpWN_page_table' ) . " WHERE $p_where $c_order"; |