Fix parse error in r96275
authorRoan Kattouw <catrope@users.mediawiki.org>
Tue, 6 Sep 2011 22:17:01 +0000 (22:17 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Tue, 6 Sep 2011 22:17:01 +0000 (22:17 +0000)
includes/Export.php

index 3260cca..14d7690 100644 (file)
@@ -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" );