From 82625f67955e6f73097890a232c496c1ec98ab47 Mon Sep 17 00:00:00 2001 From: SecretR Date: Fri, 22 Feb 2013 14:37:17 +0200 Subject: [PATCH] Fixes #114: Admin-ui inline editing and drag & drop sorting fails when mode != main (missing FAQ $sortField variable) --- e107_plugins/faqs/admin_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_plugins/faqs/admin_config.php b/e107_plugins/faqs/admin_config.php index d07160c17..a27806690 100644 --- a/e107_plugins/faqs/admin_config.php +++ b/e107_plugins/faqs/admin_config.php @@ -67,7 +67,7 @@ class faq_cat_ui extends e_admin_ui protected $pid = "faq_info_id"; protected $perPage = 5; //no limit protected $listOrder = 'faq_info_order ASC'; - + protected $sortField = 'faq_info_order'; // protected $listQry = "SELECT * FROM #faq_info"; // without any Order or Limit. // protected $editQry = "SELECT * FROM #faq_info WHERE faq_info_id = {ID}";