|
From: FlorinCB <ory...@us...> - 2008-11-05 08:20:37
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30498 Modified Files: mx_functions_core.php Log Message: undefined index fixed with isset() Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** mx_functions_core.php 31 Oct 2008 19:02:21 -0000 1.109 --- mx_functions_core.php 5 Nov 2008 08:20:30 -0000 1.110 *************** *** 3086,3090 **** $this->total_block = count($this->blocks); ! $this->block_border_graphics = $theme['border_graphics']; $s_hidden_fields = '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />'; --- 3086,3090 ---- $this->total_block = count($this->blocks); ! $this->block_border_graphics = isset($theme['border_graphics']) ? $theme['border_graphics'] : false; $s_hidden_fields = '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />'; |