install.php
changeset 267 43add2be1371
parent 262 596945fa6e56
child 268 58477ab3937f
equal deleted inserted replaced
264:0fe1f610698d 267:43add2be1371
    95       $resumed = true;
    95       $resumed = true;
    96     }
    96     }
    97   }
    97   }
    98   if ( !$resumed && $allow_skip )
    98   if ( !$resumed && $allow_skip )
    99   {
    99   {
   100     echo_stage_success($stage_id, "[dbg: skipped] $stage_name");
   100     echo_stage_success($stage_id, $stage_name);
   101     return false;
   101     return false;
   102   }
   102   }
   103   if ( !function_exists($function) )
   103   if ( !function_exists($function) )
   104     die('libenanoinstall: CRITICAL: function "' . $function . '" for ' . $stage_id . ' doesn\'t exist');
   104     die('libenanoinstall: CRITICAL: function "' . $function . '" for ' . $stage_id . ' doesn\'t exist');
   105   $result = @call_user_func($function, false, $already_run);
   105   $result = @call_user_func($function, false, $already_run);