aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-23 14:00:43 -0800
committerzotlabs <mike@macgirvin.com>2017-11-23 14:00:43 -0800
commit0cfe2ecd7bd77e2208e444350804682652686acc (patch)
tree5fac277123ebea722c9cfc793b5f07d241a9fbbb /include
parentc96f1dbbe22edf5a71170a7a39dd7b6fcea938f5 (diff)
parent14f12927436f71c753127be83f348d89b99401b6 (diff)
downloadvolse-hubzilla-0cfe2ecd7bd77e2208e444350804682652686acc.tar.gz
volse-hubzilla-0cfe2ecd7bd77e2208e444350804682652686acc.tar.bz2
volse-hubzilla-0cfe2ecd7bd77e2208e444350804682652686acc.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'include')
-rw-r--r--include/attach.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/attach.php b/include/attach.php
index 7988286c9..5b4c24f6f 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -1639,7 +1639,7 @@ function find_filename_by_hash($channel_id, $attachHash) {
* @param int $bufsize size of chunk, default 16384
* @return number with the size
*/
-function pipe_streams($in, $out, $bufize = 16384) {
+function pipe_streams($in, $out, $bufsize = 16384) {
$size = 0;
while (!feof($in))
$size += fwrite($out, fread($in, $bufsize));