demianturner / sgl-docs-tickets-migration-test

0 stars 0 forks source link

Pear Syntax Error #1737

Closed demianturner closed 11 years ago

demianturner commented 11 years ago

in lib/pear/File/Archive/Writer/AddBaseName.php

{{{ /* * @see File_Archive_Writer::newFromTempFile() / function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") { $this->writer->newFromTempFile($tmpfilen $this->baseName.$filename, $stat, $mime); } }}}

should be {{{ /* * @see File_Archive_Writer::newFromTempFile() / function newFromTempFile($tmpfile, $filename, $stat = array(), $mime = "application/octet-stream") { $this->writer->newFromTempFile($tmpfilen, $this->baseName.$filename, $stat, $mime); } }}}

The ',' is missing between $tmpfilen and $this->baseName.$filename

demianturner commented 11 years ago

[demian] as you can see here the error you mention does not exist in the sgl repo:

http://trac.seagullproject.org/browser/vendor/pear/File/Archive/Writer/AddBaseName.php

maybe you had a local modification? Pls verify and close the ticket accordingly.

demianturner commented 11 years ago

[malber] This is not an issue in that latest code, it was a problem in 0.6.6