|
From: FlorinCB <ory...@us...> - 2008-09-16 22:17:17
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11554 Modified Files: mx_functions_core.php Log Message: fix Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** mx_functions_core.php 2 Sep 2008 21:24:15 -0000 1.103 --- mx_functions_core.php 17 Sep 2008 05:17:11 -0000 1.104 *************** *** 3301,3305 **** $page_nav = array(); ! $this->core_nav( $this->page_rowset[$cat_id]['page_parent'], &$page_nav ); $sql = 'UPDATE ' . PAGE_TABLE . " --- 3301,3305 ---- $page_nav = array(); ! $this->core_nav($this->page_rowset[$cat_id]['page_parent'], $page_nav); $sql = 'UPDATE ' . PAGE_TABLE . " *************** *** 3330,3334 **** if ( !empty( $this->page_rowset[$parent_id] ) ) { ! $this->core_nav( $this->page_rowset[$parent_id]['page_parent'], &$page_nav ); $page_nav[$parent_id] = $this->page_rowset[$parent_id]['page_name']; } --- 3330,3334 ---- if ( !empty( $this->page_rowset[$parent_id] ) ) { ! $this->core_nav($this->page_rowset[$parent_id]['page_parent'], $page_nav); $page_nav[$parent_id] = $this->page_rowset[$parent_id]['page_name']; } *************** *** 3523,3527 **** { $page_nav = array(); ! $this->core_nav( $this->page_rowset[$page_id]['page_parent'], &$page_nav ); $sql = 'UPDATE ' . PAGE_TABLE . " --- 3523,3527 ---- { $page_nav = array(); ! $this->core_nav($this->page_rowset[$page_id]['page_parent'], $page_nav); $sql = 'UPDATE ' . PAGE_TABLE . " |