1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 05:11:42 +02:00

PHP Notice fixes.

This commit is contained in:
Cameron
2016-02-13 12:57:34 -08:00
parent e8c1b055fe
commit 1ceabc69f3
5 changed files with 41 additions and 7 deletions

View File

@@ -5519,7 +5519,7 @@ class e_admin_ui extends e_admin_controller_ui
unset($_parms);
}
if($att['data'] == 'array' && ($this->getAction() == 'inline')) // FIX for arrays being saved incorrectly with inline editing.
if(!empty($att['data']) && $att['data'] == 'array' && ($this->getAction() == 'inline')) // FIX for arrays being saved incorrectly with inline editing.
{
$att['data'] = 'set';
}