View Single Post
  #4 (permalink)  
Old 09-28-2008, 10:00 AM
valipe valipe is offline
Casual Pligger
 
Join Date: Dec 2007
Posts: 40
Thanks: 0
Thanked 1 Time in 1 Post
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
Reply With Quote