1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-28 12:10:52 +02:00
ttrss/classes/handler/protected.php
2021-02-12 21:24:49 +03:00

8 lines
144 B
PHP

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