Release of v3.2.3-alpha2
Fix missing scripts and styles fields and methods in the site admin view model. Update subform field layout across JCB for cleaner look. Remove expansion feature. Fix helper area.
This commit is contained in:
@ -39,7 +39,7 @@ class JFormFieldAdminsviews extends JFormFieldList
|
||||
*/
|
||||
protected function getOptions()
|
||||
{
|
||||
$db = JFactory::getDBO();
|
||||
$db = Factory::getDBO();
|
||||
$query = $db->getQuery(true);
|
||||
$query->select($db->quoteName(array('a.id','a.system_name'),array('id','adminviews_system_name')));
|
||||
$query->from($db->quoteName('#__componentbuilder_admin_view', 'a'));
|
||||
@ -52,7 +52,7 @@ class JFormFieldAdminsviews extends JFormFieldList
|
||||
{
|
||||
foreach($items as $item)
|
||||
{
|
||||
$options[] = JHtml::_('select.option', $item->id, $item->adminviews_system_name);
|
||||
$options[] = Html::_('select.option', $item->id, $item->adminviews_system_name);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user