From b82cfaea920f560a0ce2ba2445a88ec1d0e451f0 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 27 Jun 2016 18:03:09 -0700 Subject: [PATCH] Fix for SEF URL generation selector. --- e107_admin/links.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_admin/links.php b/e107_admin/links.php index f43ef9902..e006b2375 100644 --- a/e107_admin/links.php +++ b/e107_admin/links.php @@ -725,7 +725,7 @@ class links_admin_form_ui extends e_admin_form_ui foreach($config as $k=>$v) { - if($k == 'index') // only provide urls without dynamic elements. + if($k == 'index' || (strpos($v['regex'],'(') === false)) // only provide urls without dynamic elements. { $opts[] = $k; }