|
From: Jon O. <jon...@us...> - 2006-08-14 10:46:54
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb/modules In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24165/modules/mx_linkdb/linkdb/modules Modified Files: link_category.php link_viewall.php Log Message: Upgrade fix Bug for category view cache update Index: link_category.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/modules/link_category.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** link_category.php 13 Aug 2006 19:43:51 -0000 1.12 --- link_category.php 14 Aug 2006 10:46:47 -0000 1.13 *************** *** 151,155 **** } ! $this->display_items( $sort_method, $sort_order, $start, $no_file_message, $cat_id ); $this->display( $lang['Links_Title'], 'link_category_body.tpl' ); --- 151,155 ---- } ! $this->display_items( $sort_method, $sort_order, $start, $cat_id, $no_file_message ); $this->display( $lang['Links_Title'], 'link_category_body.tpl' ); Index: link_viewall.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/modules/link_viewall.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** link_viewall.php 13 Aug 2006 19:43:51 -0000 1.11 --- link_viewall.php 14 Aug 2006 10:46:48 -0000 1.12 *************** *** 96,100 **** ); ! $this->display_items( $sort_method, $sort_order, $start, true ); $this->display( $lang['Links_Title'] . ' :: ' . $lang['Viewall'], 'link_viewall_body.tpl' ); --- 96,100 ---- ); ! $this->display_items( $sort_method, $sort_order, $start, false, true ); $this->display( $lang['Links_Title'] . ' :: ' . $lang['Viewall'], 'link_viewall_body.tpl' ); |