mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-04 19:50:59 +02:00
11 lines
196 B
PHP
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'>";
|
|
}
|
|
}
|
|
?>
|