diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-29 09:26:39 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-29 09:26:39 +0000 |
commit | b4f92c7de69466b2d4ec0c41b9b22e4511314a24 (patch) | |
tree | fa174f59d2cfaaf993600735f57053ba0b059ec4 /core/helpers | |
parent | 6091350c9454c92e5a975901eff8f5f46bee3045 (diff) |
Add delete support as a quick-edit option
Diffstat (limited to 'core/helpers')
-rw-r--r-- | core/helpers/dir.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/dir.php b/core/helpers/dir.php index 33767f87..e9fe4ea7 100644 --- a/core/helpers/dir.php +++ b/core/helpers/dir.php @@ -27,7 +27,7 @@ class dir_Core { } else if ($resource->isFile()) { unlink($resource->getPathName()); } else if ($resource->isDir()) { - directory::unlink($resource->getRealPath()); + dir::unlink($resource->getRealPath()); } unset($resource); } |