diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-25 22:17:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-25 22:17:12 -0300 |
commit | b17948a6e493bc6930303527011942212a543db2 (patch) | |
tree | 4088a06d17d7794381b3353af7f734695f2c3374 | |
parent | 7209ebbb7017553ce106c9f23730190a153d2f2e (diff) | |
download | semanticscuttle-b17948a6e493bc6930303527011942212a543db2.tar.gz semanticscuttle-b17948a6e493bc6930303527011942212a543db2.tar.bz2 |
Create cacheUrl cacheInfo folder recursivelly
-rw-r--r-- | data/templates/default/bookmarks.tpl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/default/bookmarks.tpl.php b/data/templates/default/bookmarks.tpl.php index 9b05650..a2ff752 100644 --- a/data/templates/default/bookmarks.tpl.php +++ b/data/templates/default/bookmarks.tpl.php @@ -368,7 +368,7 @@ if ($currenttag!= '') { if ($retcode != 404) { if (!file_exists($cacheInfo .'/'. $assetHash)) { - mkdir($cacheInfo .'/'. $assetHash); + mkdir($cacheInfo .'/'. $assetHash, 0755, true); } touch($cacheInfo .'/'. $assetHash .'/hascache'); |