1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 12:21:45 +02:00

PHP Notice removal.

This commit is contained in:
Cameron
2016-03-13 00:16:08 -08:00
parent af1bbb1c8a
commit 3f6fe6cd85
8 changed files with 15 additions and 9 deletions

View File

@@ -2408,7 +2408,10 @@ class e_parse extends e_parser
elseif(!empty($parm['w']) || !empty($parm['w']) )
{
$this->thumbWidth($parm['w']);
$this->thumbHeight($parm['h']);
if(isset($parm['h']))
{
$this->thumbHeight($parm['h']);
}
}