1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 05:37:32 +02:00

Page View fix

This commit is contained in:
Cameron
2013-03-09 14:21:46 -08:00
parent 536c148401
commit eb10a16eb1

View File

@@ -293,7 +293,7 @@ class page_admin_ui extends e_admin_ui
protected $pluginName = 'core'; protected $pluginName = 'core';
protected $table = "page"; protected $table = "page";
protected $listQry = "SELECT p.*,u.user_id,u.user_name FROM #page AS p LEFT JOIN #user AS u ON p.page_author = u.user_id WHERE p.page_theme = '' "; // without any Order or Limit. protected $listQry = "SELECT p.*,u.user_id,u.user_name FROM #page AS p LEFT JOIN #user AS u ON p.page_author = u.user_id WHERE p.page_title != '' "; // without any Order or Limit.
//protected $editQry = "SELECT * FROM #comments WHERE comment_id = {ID}"; //protected $editQry = "SELECT * FROM #comments WHERE comment_id = {ID}";
protected $pid = "page_id"; protected $pid = "page_id";