1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:16:06 +00:00
Files
tt-rss/classes/handler/protected.php
2017-04-26 20:24:18 +03:00

8 lines
136 B
PHP

<?php
class Handler_Protected extends Handler {
function before($method) {
return parent::before($method) && $_SESSION['uid'];
}
}