]> git.wh0rd.org Git - tt-rss.git/blob - classes/protected_handler.php
only enable ob_gzhandler if it exists
[tt-rss.git] / classes / protected_handler.php
1 <?php
2 class Protected_Handler extends Handler {
3
4         function before() {
5                 return parent::before() && $_SESSION['uid'];
6         }
7 }
8 ?>