From: Roan Kattouw Date: Tue, 6 Sep 2011 22:17:01 +0000 (+0000) Subject: Fix parse error in r96275 X-Git-Tag: 1.31.0-rc.0~27859 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=e1978da7a355777426f2a16755611635516e6e59;p=lhc%2Fweb%2Fwiklou.git Fix parse error in r96275 --- diff --git a/includes/Export.php b/includes/Export.php index 3260cca3e6..14d7690d7f 100644 --- a/includes/Export.php +++ b/includes/Export.php @@ -730,8 +730,7 @@ class DumpOutput { * @ingroup Dump */ class DumpFileOutput extends DumpOutput { - var $handle; - var $filename; + protected $handle, $filename; function __construct( $file ) { $this->handle = fopen( $file, "wt" );