1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

fix blank character after opening bracket in function calls

This commit is contained in:
Andrew Dolgov
2013-04-17 18:34:18 +04:00
parent 72ff013729
commit a42c55f02b
56 changed files with 1399 additions and 1399 deletions

View File

@@ -20,14 +20,14 @@
init_plugins($link);
login_sequence( true);
login_sequence(true);
$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);
}
?>