From: john Date: Wed, 15 Aug 2018 06:16:01 +0000 (+0800) Subject: Asset.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=15a237b0be70c1342352f87382d0b09959b5d3b7 Asset.php --- diff --git a/Asset.php b/Asset.php index 84b56259..0346e349 100644 --- a/Asset.php +++ b/Asset.php @@ -144,6 +144,10 @@ class Pman_Core_Asset extends Pman { return $compile_dir; } - mkdir($compile_dir, 0700, true); + if(mkdir($compile_dir, 0700, true)) { + return $compile_dir; + } + + return false; } }