summaryrefslogtreecommitdiff
path: root/plugins/mobile/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-17 18:34:18 +0400
committerAndrew Dolgov <[email protected]>2013-04-17 18:34:18 +0400
commita42c55f02b7e313ab61bf826794d0888f2dceae1 (patch)
tree7946572f0e45015a0b54830bd1296be548584ed8 /plugins/mobile/index.php
parent72ff0137298f60970c664f0be24327b120bf4ac7 (diff)
fix blank character after opening bracket in function calls
Diffstat (limited to 'plugins/mobile/index.php')
-rw-r--r--plugins/mobile/index.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/mobile/index.php b/plugins/mobile/index.php
index 8202f4043..7154ebdc2 100644
--- a/plugins/mobile/index.php
+++ b/plugins/mobile/index.php
@@ -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);
}
?>