Skip to content

Commit

Permalink
[IC] repaired typo in rmdir function
Browse files Browse the repository at this point in the history
  • Loading branch information
datazen committed Nov 20, 2013
1 parent 8da0b2b commit 9360165
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ protected static function rmdir_r($path) {
if($f->isFile()) {
@unlink($f->getRealPath());
} else if(!$f->isDot() && $f->isDir()) {
self::_rrmdir($f->getRealPath());
self::rmdir_r($f->getRealPath());
@rmdir($f->getRealPath());
}
}
Expand Down

0 comments on commit 9360165

Please sign in to comment.