1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-31 02:00:14 +02:00

Theme options and fixes. Load Theme JS in the footer by default. New blockquote alt. style added to TinyMce. Updated news shortcodes. Option to hide search form from results page.

This commit is contained in:
Cameron
2016-06-01 18:36:16 -07:00
parent 9080291661
commit cd8ea61bd9
11 changed files with 98 additions and 96 deletions

View File

@@ -23,7 +23,7 @@ if(!empty($parm))
}
}
$cached = false;
if(false === $cached)
{
@@ -87,12 +87,12 @@ if(false === $cached)
$month_links = array();
$sql->db_Mark_Time('News months menu');
if(!$sql->db_Select("news", "news_id, news_datestamp", "news_class IN (".USERCLASS_LIST.") AND news_datestamp > ".intval($start)." AND news_datestamp < ".intval($end)." ORDER BY news_datestamp DESC"))
if(!$sql->select("news", "news_id, news_datestamp", "news_class IN (".USERCLASS_LIST.") AND news_datestamp > ".intval($start)." AND news_datestamp < ".intval($end)." ORDER BY news_datestamp DESC"))
{
e107::getCache()->set($cString, '');
return '';
}
while ($news = $sql->db_Fetch())
while ($news = $sql->fetch())
{
$xmonth = date("n", $news['news_datestamp']);
if ((!isset($month_links[$xmonth]) || !$month_links[$xmonth]))
@@ -102,7 +102,10 @@ if(false === $cached)
}
$xmonth_cnt[$xmonth]++;
}
e107::getDebug()->log($month_links);
// go over the link array and create the option fields
$menu_text = array();
$template = e107::getTemplate('news', 'news_menu', 'months');