re-added common::find_image() and common::image_on() as deprecated

This commit is contained in:
Ralf Becker 2011-08-30 22:16:31 +00:00
parent a048840e44
commit dce02a03cb

View File

@ -737,6 +737,22 @@ class common
return False;
}
/**
* @deprecated use image($app,$image)
*/
static function find_image($app,$image)
{
return self::image($app,$image);
}
/**
* @deprecated use image($app,$image)
*/
static function image_on($app,$image)
{
return self::image($app,$image);
}
/**
* Searches a appname, template and maybe language and type-specific image
*