Skip to content

Commit

Permalink
/td tag and cookie val wrappingy
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@75 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Dec 14, 2000
1 parent f4ec0f3 commit 7cc6ebd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
Expand Up @@ -8,7 +8,6 @@ To Do:
* Add ip tracking/banning capability
* Add file upload module
* Add postgreSQL support and/or a Database abstraction layer (PHPLib)
* Refine viewing news archives
* Make priority useful
* Force some sort of dialog when closing a bug
* Force some sort of dialog when reopening a bug
Expand All @@ -21,6 +20,11 @@ To Do:
* Move as much of the config_inc.php varaibles into a database table.
Then build a nice interface into it.

12.X.2000 - 0.11.1

* Wrapped the global cookie _val variables in if (isset)) blocks.
* Fixed a missing </TD> tag on the report bug pages.

12.12.2000 - 0.11.0

* Profiles can be used for advanced bug submission
Expand Down
10 changes: 7 additions & 3 deletions config_inc.php
Expand Up @@ -194,8 +194,12 @@
$g_last_access_cookie = $g_cookie_prefix."_LAST_ACCESS_COOKIE";

# cookie values
$g_string_cookie_val = $HTTP_COOKIE_VARS[$g_string_cookie];
$g_last_access_cookie_val = $HTTP_COOKIE_VARS[$g_last_access_cookie];
if (isset($HTTP_COOKIE_VARS[$g_string_cookie])) {
$g_string_cookie_val = $HTTP_COOKIE_VARS[$g_string_cookie];
}
if (isset($HTTP_COOKIE_VARS[$g_last_access_cookie])) {
$g_last_access_cookie_val = $HTTP_COOKIE_VARS[$g_last_access_cookie];
}
#--------------------

#--------------------
Expand All @@ -208,7 +212,7 @@
#--------------------
# defaults for viewing preferences
$g_default_limit_view = 50;
$g_default_show_changed = 1;
$g_default_show_changed = 6;
$g_default_hide_resolved = ""; # set to on to enable
$g_default_advanced_report = ""; # set to on to enable
$g_default_advanced_view = ""; # set to on to enable
Expand Down
1 change: 1 addition & 0 deletions report_bug_advanced_page.php3
Expand Up @@ -73,6 +73,7 @@
<td>
Severity:<br>
<font color=<? echo $g_required_field_color ?> size=-1>[*required*]</font>
</td>
<td>
<select name=f_severity>
<option value="" selected>Select Severity
Expand Down
1 change: 1 addition & 0 deletions report_bug_page.php3
Expand Up @@ -72,6 +72,7 @@
<td>
Severity:<br>
<font color=<? echo $g_required_field_color ?> size=-1>[*required*]</font>
</td>
<td>
<select name=f_severity>
<option value="" selected>Select Severity
Expand Down

0 comments on commit 7cc6ebd

Please sign in to comment.