From: <vb...@us...> - 2002-10-06 15:23:39
|
Update of /cvsroot/webnotes/webnotes/core In directory usw-pr-cvs1:/tmp/cvs-serv15062/core Modified Files: config_defaults_inc.php email_api.php html_api.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: config_defaults_inc.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/core/config_defaults_inc.php,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- config_defaults_inc.php 4 Oct 2002 04:41:48 -0000 1.13 +++ config_defaults_inc.php 6 Oct 2002 15:23:36 -0000 1.14 @@ -116,6 +116,7 @@ # ADMIN SETTINGS ################### + # automatically index pages that call pwn_api APIs when visited for the first time. $g_auto_index_pages = ON; # automatically sets the e-mail field when logged in users are submitting notes. @@ -132,7 +133,7 @@ ################################ # AUTH_MD5, AUTH_CRYPT, AUTH_PLAIN - $g_auth_type = AUTH_PLAIN; + $g_auth_type = AUTH_MD5; # allow users to signup for their own accounts $g_allow_signup = ON; Index: email_api.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/core/email_api.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- email_api.php 3 Oct 2002 06:31:03 -0000 1.4 +++ email_api.php 6 Oct 2002 15:23:36 -0000 1.5 @@ -61,7 +61,7 @@ #$t_headers .= "Reply-To: $p_reply_to_email\n"; $t_headers .= "X-Sender: <$g_from_email>\n"; - $t_headers .= "X-Mailer: phpWebNotes $g_phpWebNotes_version"\n"; + $t_headers .= "X-Mailer: phpWebNotes $g_phpWebNotes_version\n"; if ( ON == $g_use_x_priority ) { $t_headers .= "X-Priority: 0\n"; # Urgent = 1, Not Urgent = 5, Disable = 0 } Index: html_api.php =================================================================== RCS file: /cvsroot/webnotes/webnotes/core/html_api.php,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- html_api.php 3 Oct 2002 03:47:50 -0000 1.19 +++ html_api.php 6 Oct 2002 15:23:36 -0000 1.20 @@ -117,9 +117,9 @@ echo '<div class="menu">.: '; echo "<a title=\"Go to your home page\" href=\"$g_user_home_page\">Home</a> :: "; - if ( access_check_action( ACTION_PAGES_MANAGE ) ) { - echo "<a title=\"Add or remove pages\" href=\"$g_admin_index_files\">$s_index_files</a> :: "; - } + #if ( access_check_action( ACTION_PAGES_MANAGE ) ) { + # echo "<a title=\"Add or remove pages\" href=\"$g_admin_index_files\">$s_index_files</a> :: "; + #} if ( access_check_action( ACTION_NOTES_MODERATE ) ) { echo "<a title=\"Moderate notes\" href=\"$g_admin_manage_notes\">$s_manage_notes</a> [$queue_count] :: "; } |