diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-23 17:23:53 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-23 17:23:53 -0700 |
commit | 547c70076499010b240ec174696176a2f5de0dc8 (patch) | |
tree | 31368df4d00cf669d30a804df5e4fb92ee891c0a /include/api_zot.php | |
parent | 823c0ebb47a8a39dbecae6902b0fe0dce158e417 (diff) | |
download | volse-hubzilla-547c70076499010b240ec174696176a2f5de0dc8.tar.gz volse-hubzilla-547c70076499010b240ec174696176a2f5de0dc8.tar.bz2 volse-hubzilla-547c70076499010b240ec174696176a2f5de0dc8.zip |
misplaced parens
Diffstat (limited to 'include/api_zot.php')
-rw-r--r-- | include/api_zot.php | 2 |
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); } |