Skip to content

Commit

Permalink
0.15.3 updates
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@338 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Jul 30, 2001
1 parent 08fc962 commit 9e1ad96
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
1 change: 1 addition & 0 deletions CREDITS
Expand Up @@ -22,6 +22,7 @@ Steve Davies
Jason Stewart
Helmut Franzke
Scott Roberts
Duncan Lisset

Translations:

Expand Down
15 changes: 13 additions & 2 deletions 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

Expand Down
11 changes: 8 additions & 3 deletions config_inc.php
Expand Up @@ -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
Expand Down Expand Up @@ -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 = "";
Expand All @@ -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];
Expand All @@ -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 ###
Expand Down

0 comments on commit 9e1ad96

Please sign in to comment.