summaryrefslogtreecommitdiff
path: root/classes/protected_handler.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/protected_handler.php')
-rw-r--r--classes/protected_handler.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/protected_handler.php b/classes/protected_handler.php
index e8a6d40a7..5d8d690c3 100644
--- a/classes/protected_handler.php
+++ b/classes/protected_handler.php
@@ -1,8 +1,8 @@
<?php
class Protected_Handler extends Handler {
- function before() {
- return parent::before() && $_SESSION['uid'];
+ function before($method) {
+ return parent::before($method) && $_SESSION['uid'];
}
}
?>