Code cleanup
Add README Fix php4 style constructor in backup.inc
This commit is contained in:
parent
b82d64f7ef
commit
b1d23cefb1
1 changed files with 8 additions and 1 deletions
|
|
@ -56,7 +56,14 @@ class BackupDumper {
|
|||
var $revCountLast = 0;
|
||||
var $ID = 0;
|
||||
|
||||
function BackupDumper( $args ) {
|
||||
var $outputTypes = array(), $filterTypes = array();
|
||||
|
||||
/**
|
||||
* @var LoadBalancer
|
||||
*/
|
||||
protected $lb;
|
||||
|
||||
function __construct( $args ) {
|
||||
$this->stderr = fopen( "php://stderr", "wt" );
|
||||
|
||||
// Built-in output and filter plugins
|
||||
|
|
|
|||
Loading…
Reference in a new issue