equal
deleted
inserted
replaced
46 echo_stage_success($stage_id, $stage_name); |
46 echo_stage_success($stage_id, $stage_name); |
47 return false; |
47 return false; |
48 } |
48 } |
49 if ( !function_exists($function) ) |
49 if ( !function_exists($function) ) |
50 die('libenanoinstall: CRITICAL: function "' . $function . '" for ' . $stage_id . ' doesn\'t exist'); |
50 die('libenanoinstall: CRITICAL: function "' . $function . '" for ' . $stage_id . ' doesn\'t exist'); |
51 $result = @call_user_func($function, false, $already_run); |
51 $result = call_user_func($function, false, $already_run); |
52 if ( $result ) |
52 if ( $result ) |
53 { |
53 { |
54 echo_stage_success($stage_id, $stage_name); |
54 echo_stage_success($stage_id, $stage_name); |
55 $resume_stack[] = $stage_id; |
55 $resume_stack[] = $stage_id; |
56 return true; |
56 return true; |