1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 15:51:28 +00:00

implement ProtectedHandler

This commit is contained in:
Andrew Dolgov
2011-12-13 14:15:42 +04:00
parent 8e17d6636e
commit 46da73c255
10 changed files with 79 additions and 71 deletions

View File

@@ -0,0 +1,8 @@
<?php
class Protected_Handler extends Handler {
function before() {
return parent::before() && $_SESSION['uid'];
}
}
?>