1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/classes/protected_handler.php

9 lines
125 B
PHP
Raw Normal View History

2011-12-13 11:15:42 +01:00
<?php
class Protected_Handler extends Handler {
function before() {
return parent::before() && $_SESSION['uid'];
}
}
?>