Skip to content

Commit

Permalink
Make properties public so that they can be access in Storage object
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Connor committed Sep 21, 2023
1 parent 92d3e00 commit 057159c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions web/includes/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
class Storage extends ZM_Object {
protected static $table = 'Storage';

protected $Id;
protected $Path;
protected $Name;
protected $Type;
protected $Url;
protected $DiskSpace;
protected $Scheme;
protected $ServerId;
protected $DoDelete;
protected $Enabled;
public $Id;
public $Path;
public $Name;
public $Type;
public $Url;
public $DiskSpace;
public $Scheme;
public $ServerId;
public $DoDelete;
public $Enabled;

protected $defaults = array(
'Id' => null,
Expand Down

0 comments on commit 057159c

Please sign in to comment.