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

{SETIMAGE} small behavior modification

This commit is contained in:
Cameron 2017-01-23 12:53:21 -08:00
parent bec65b375b
commit fe4574d4fe

View File

@ -10,9 +10,9 @@
$parm['h'] = 0;
$parm['crop'] = 0;
}
e107::getParser()->thumbWidth = vartrue($parm['w'],100);
e107::getParser()->thumbHeight = vartrue($parm['h'],0);
e107::getParser()->thumbCrop = vartrue($parm['crop'],0);
e107::getParser()->thumbWidth = varset($parm['w'],0);
e107::getParser()->thumbHeight = varset($parm['h'],0);
e107::getParser()->thumbCrop = varset($parm['crop'],0);
}