aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-10-23 17:23:53 -0700
committerzotlabs <mike@macgirvin.com>2016-10-23 17:23:53 -0700
commit547c70076499010b240ec174696176a2f5de0dc8 (patch)
tree31368df4d00cf669d30a804df5e4fb92ee891c0a
parent823c0ebb47a8a39dbecae6902b0fe0dce158e417 (diff)
downloadvolse-hubzilla-547c70076499010b240ec174696176a2f5de0dc8.tar.gz
volse-hubzilla-547c70076499010b240ec174696176a2f5de0dc8.tar.bz2
volse-hubzilla-547c70076499010b240ec174696176a2f5de0dc8.zip
misplaced parens
-rw-r--r--include/api_zot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/api_zot.php b/include/api_zot.php
index e91d82b0b..38919cb95 100644
--- a/include/api_zot.php
+++ b/include/api_zot.php
@@ -83,7 +83,7 @@
$ptr['content'] = '';
elseif(! intval($r[0]['os_storage'])) {
$ptr['start'] = $start;
- $x = substr(dbunescbin($ptr['content'],$start,$length));
+ $x = substr(dbunescbin($ptr['content']),$start,$length);
$ptr['length'] = strlen($x);
$ptr['content'] = base64_encode($x);
}