add missing return

remotes/origin/stable5
Thomas Mueller 2013-01-06 23:54:18 +07:00
parent 7042b5bf1f
commit 19edb29cc3
1 changed files with 2 additions and 1 deletions

@ -38,9 +38,10 @@ class Files {
* @brief Recusive deletion of folders
* @param string $dir path to the folder
*
* @return bool
*/
static function rmdirr( $dir ) {
\OC_Helper::rmdirr( $dir );
return \OC_Helper::rmdirr( $dir );
}
/**