From 9e1ad96c5dd1080e5a643abefc9c51961cd6cc74 Mon Sep 17 00:00:00 2001 From: Kenzaburo Ito Date: Mon, 30 Jul 2001 01:26:34 +0000 Subject: [PATCH] 0.15.3 updates git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@338 f5dc347c-c33d-0410-90a0-b07cc1902cb9 --- CREDITS | 1 + ChangeLog | 15 +++++++++++++-- config_inc.php | 11 ++++++++--- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CREDITS b/CREDITS index 5a46b55e7d..5a1089abdc 100644 --- a/CREDITS +++ b/CREDITS @@ -22,6 +22,7 @@ Steve Davies Jason Stewart Helmut Franzke Scott Roberts +Duncan Lisset Translations: diff --git a/ChangeLog b/ChangeLog index 4443fd3f79..de21799b73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,23 @@ Mantis -07.XX.2001 - 0.15.3 +07.29.2001 - 0.15.3 * Added wordwrap() to text formatting in email messages. Affects description and bugnotes. * Added new function process_plain_password(). This, in conjunction with $g_@@@@@@@@@@@@@, allows you to bypass crypt(). * Added N/A to reproducibility * Added PHP version check to admin_check.php3 - * Added simple text search field to all view_all* pages + * Added simple text search field to all view_all* pages. This can also be used to lookup a bug by id + * Added user count values to the manage page + * Added $g_hide_user_email to toggle automatic mailto: linking of usernames. + * Added prelimnary support for jpgraphs support. + * Fixed bug in displaying date_submitted in emails + * Fixed "Hide Inactive" checkbox in manage_page.php3 + * Fixed access check error where Viewers could add bugnotes + * Ran a perl one-liner to try to remove all extra ^Ms from files + * Renamed $f_show_changed to $f_highlight_changed + * Removed get_bug_link_email - unused + * Removed extra $v_summary = string_display() line in view_all_inc.php + * Cleaned up email validation code 07.13.2001 - 0.15.2 diff --git a/config_inc.php b/config_inc.php index d727e807e4..b2e464d6ba 100644 --- a/config_inc.php +++ b/config_inc.php @@ -146,9 +146,9 @@ # This is in the view all pages $g_show_assigned_names = 0; - ############################ - ### Mantis JPGRAPH Addon ### - ############################ + ############################ + ### Mantis JPGRAPH Addon ### + ############################ # --- jpgraph settings --- # # Initial Version from Duncan Lisset @@ -347,6 +347,7 @@ $g_view_reported_cookie = $g_cookie_prefix."_VIEW_REPORTED_COOKIE"; $g_view_assigned_cookie = $g_cookie_prefix."_VIEW_ASSIGNED_COOKIE"; $g_view_unassigned_cookie = $g_cookie_prefix."_VIEW_UNASSIGNED_COOKIE"; + $g_manage_cookie = $g_cookie_prefix."_MANAGE_COOKIE"; # --- cookie values --------------- $g_string_cookie_val = ""; @@ -355,6 +356,7 @@ $g_view_reported_cookie_val = ""; $g_view_assigned_cookie_val = ""; $g_view_unassigned_cookie_val = ""; + $g_manage_cookie_val = ""; if ( isset( $HTTP_COOKIE_VARS[$g_string_cookie] ) ) { $g_string_cookie_val = $HTTP_COOKIE_VARS[$g_string_cookie]; @@ -374,6 +376,9 @@ if ( isset( $HTTP_COOKIE_VARS[$g_view_unassigned_cookie] ) ) { $g_view_unassigned_cookie_val = $HTTP_COOKIE_VARS[$g_view_unassigned_cookie]; } + if ( isset( $HTTP_COOKIE_VARS[$g_manage_cookie] ) ) { + $g_manage_cookie_val = $HTTP_COOKIE_VARS[$g_manage_cookie]; + } ####################################### ### Mantis Database Table Variables ###