1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-19 04:41:53 +02:00

Fix for News SEF Url 'list/all'

This commit is contained in:
Cameron
2013-12-20 10:07:58 -08:00
parent 3030ca3570
commit 34bbd17277
3 changed files with 12 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ if (!defined('e107_INIT')){ exit; }
class core_news_sef_noid_url extends eUrlConfig
{
public function config()
{
return array(
@@ -134,6 +135,15 @@ class core_news_sef_noid_url extends eUrlConfig
if(empty($r)) return false;
//XXX TODO Find a better place to put this check.
$urlFormat = e107::getConfig()->get('url_sef_translate');
if($urlFormat == 'dashl' || $urlFormat == 'underscorel' || $urlFormat == 'plusl') // convert template to lowercase when using lowercase SEF URL format.
{
// $r[0] = strtolower($r[0]);
}
return array($r, $parm);
}