1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

PHP 7.3 Notice/Warning Fixes.

This commit is contained in:
Cameron
2019-05-27 10:45:35 -07:00
parent eb6401385e
commit 783be29953
10 changed files with 42 additions and 26 deletions

View File

@@ -5521,7 +5521,7 @@ var_dump($select_options);*/
break;
case 'method': // Custom Function
$method = $attributes['field']; // prevents table alias in method names. ie. u.my_method.
$method = varset($attributes['field']); // prevents table alias in method names. ie. u.my_method.
$_value = $value;
if(!empty($attributes['data']) && $attributes['data'] == 'array') // FIXME @SecretR - please move this to where it should be.