diff options
author | Malf Furious <m@lfurio.us> | 2018-02-07 22:37:26 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-02-07 22:37:26 -0500 |
commit | 0bae6d4063c82c6522e3a5887bc25a2162504b69 (patch) | |
tree | a22a44b47684d7f20305bb3b0258a01fa6edccf5 /app | |
parent | e54418762e279a1d7ca0efb7ed89b95464753ee8 (diff) | |
download | scrott-0bae6d4063c82c6522e3a5887bc25a2162504b69.tar.gz scrott-0bae6d4063c82c6522e3a5887bc25a2162504b69.zip |
Update df script to use renamed obj class
Diffstat (limited to 'app')
-rw-r--r-- | app/df.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ function checkPermissions(string $guid, bool $allowHeadUser = false) : bool if (!($user = user::getCurrent())) return false; - $obj = new object($guid); + $obj = new obj($guid); if ($allowHeadUser && $obj->objtype == "user") return true; |