1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 04:05:55 +00:00
Files
tt-rss/classes/backend.php
2011-12-13 10:58:30 +04:00

11 lines
196 B
PHP

<?php
class Backend extends Handler {
function loading() {
header("Content-type: text/html");
print __("Loading, please wait...") . " " .
"<img src='images/indicator_tiny.gif'>";
}
}
?>