Thursday 22 May 2003 2:56:45 am
Hello,
You need to add following lines to site.ini to ImageSettings section:
e.g.
TinySizeWidth=50 TinySizeHeight=50
In addition to that add in kernel/classes/datatypes/ezimage/ezimage.php
to attribute function:
case 'tiny': /added
case 'small':
and
if ( $attr == "tiny" ) {$width = $ini->variable( "ImageSettings" , "TinySizeWidth" );
$height = $ini->variable( "ImageSettings" , "TinySizeHeight" ); }
|