ttrss/classes/backend.php

11 lines
196 B
PHP
Raw Normal View History

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