|
change this function in modules_libs.php
function check_actions($location, $vars="")
{
global $module_actions;
$vars['location'] = $location;
if($module_actions){
foreach ( $module_actions as $k => $v ) {
if($k == $location){
foreach ( $v as $kk => $vv ) {
call_user_func($kk, $vars);
}
}
}
}
}
this file is located in modules folder.this might help also did you create images folder and chmoded to 777
|