From 644c287ee0de65bf7015300d7578c08ac87b9151 Mon Sep 17 00:00:00 2001 From: secretr Date: Sun, 1 May 2011 15:22:25 +0000 Subject: [PATCH] Removed links page list limit --- e107_admin/links.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e107_admin/links.php b/e107_admin/links.php index b84961a8f..f55608fbb 100644 --- a/e107_admin/links.php +++ b/e107_admin/links.php @@ -61,9 +61,9 @@ class links_admin_ui extends e_admin_ui protected $pluginTitle = "Site links"; protected $pluginName = 'core'; protected $table = "links"; - protected $listQry = "SELECT * FROM #links ORDER BY link_category,link_order, link_id ASC"; // without any Order or Limit. + protected $listQry = '';//"SELECT * FROM #links ORDER BY link_category,link_order, link_id ASC"; // without any Order or Limit. protected $pid = "link_id"; - protected $perPage = 15; + protected $perPage = 0; protected $batchDelete = true; protected $fields = array( @@ -391,7 +391,7 @@ class links_admin_form_ui extends e_admin_form_ui } if($mode == 'write') - { + { return $this->selectbox('link_function',$this->linkFunctions,$curVal,array('default'=> "(".LAN_OPTIONAL.")")); }