1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Removed links page list limit

This commit is contained in:
secretr
2011-05-01 15:22:25 +00:00
parent f4943b4f73
commit 644c287ee0

View File

@@ -61,9 +61,9 @@ class links_admin_ui extends e_admin_ui
protected $pluginTitle = "Site links"; protected $pluginTitle = "Site links";
protected $pluginName = 'core'; protected $pluginName = 'core';
protected $table = "links"; 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 $pid = "link_id";
protected $perPage = 15; protected $perPage = 0;
protected $batchDelete = true; protected $batchDelete = true;
protected $fields = array( protected $fields = array(
@@ -391,7 +391,7 @@ class links_admin_form_ui extends e_admin_form_ui
} }
if($mode == 'write') if($mode == 'write')
{ {
return $this->selectbox('link_function',$this->linkFunctions,$curVal,array('default'=> "(".LAN_OPTIONAL.")")); return $this->selectbox('link_function',$this->linkFunctions,$curVal,array('default'=> "(".LAN_OPTIONAL.")"));
} }