Fixed fade-in affect problem of not loading the affect when added.
This commit is contained in:
@ -75,11 +75,9 @@ abstract class ComponentbuilderHelper
|
||||
{
|
||||
// set image
|
||||
$image = JPATH_SITE.'/'.$path;
|
||||
// chack if exists
|
||||
if (file_exists($image))
|
||||
// check if exists
|
||||
if (file_exists($image) && $result = @getimagesize($image))
|
||||
{
|
||||
// get image info
|
||||
$result = getimagesize($image);
|
||||
// return type request
|
||||
switch ($request)
|
||||
{
|
||||
|
Reference in New Issue
Block a user