Skip to content

Commit

Permalink
fixed error in explode()
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@283 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Jul 6, 2001
1 parent 864bf48 commit b0a3657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view_all_unassign_bug_pg.php3
Expand Up @@ -25,7 +25,7 @@
}
else if ( strlen($g_view_unassigned_cookie_val)>6 ) {
### Load preferences
$t_setting_arr = explode( "#", $g_view_assigned_cookie_val );
$t_setting_arr = explode( "#", $g_view_unassigned_cookie_val );
$f_show_category = $t_setting_arr[0];
$f_show_severity = $t_setting_arr[1];
$f_show_status = $t_setting_arr[2];
Expand Down

0 comments on commit b0a3657

Please sign in to comment.