From e1978da7a355777426f2a16755611635516e6e59 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 6 Sep 2011 22:17:01 +0000 Subject: [PATCH] Fix parse error in r96275 --- includes/Export.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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" ); -- 2.20.1