ttrss/classes/backend.php

11 lines
196 B
PHP
Raw Normal View History

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