mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-08 03:21:32 +00:00
fix blank character after opening bracket in function calls
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
init_plugins($link);
|
||||
|
||||
login_sequence( true);
|
||||
login_sequence(true);
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
@@ -76,13 +76,13 @@
|
||||
</div>
|
||||
|
||||
<?php
|
||||
$use_cats = mobile_get_pref( 'ENABLE_CATS');
|
||||
$offset = (int) db_escape_string( $_REQUEST["skip"]);
|
||||
$use_cats = mobile_get_pref('ENABLE_CATS');
|
||||
$offset = (int) db_escape_string($_REQUEST["skip"]);
|
||||
|
||||
if ($use_cats) {
|
||||
render_categories_list($link);
|
||||
} else {
|
||||
render_flat_feed_list( $offset);
|
||||
render_flat_feed_list($offset);
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user