mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-08 07:07:30 +02:00
9 lines
125 B
PHP
9 lines
125 B
PHP
<?php
|
|
class Protected_Handler extends Handler {
|
|
|
|
function before() {
|
|
return parent::before() && $_SESSION['uid'];
|
|
}
|
|
}
|
|
?>
|