1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-16 20:28:28 +01:00

Fix for PHP error

This commit is contained in:
Cameron 2016-07-02 11:44:28 -07:00
parent d511bb6c9a
commit 61ce9395f4

View File

@ -19,7 +19,7 @@ class tinymce4_setup
{
$list = e107::getConfig()->get('e_meta_list');
if(in_array('tinymce4',$list))
if(!empty($list) && in_array('tinymce4',$list))
{
return true;
}