fixed FS#186 - remove old parent constructors
Dieser Commit ist enthalten in:
Ursprung
e47534bdc7
Commit
9fee2a6184
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -39,7 +39,7 @@ class pApiContentAllocationComplexList extends pApiTree {
|
||||||
|
|
||||||
public function __construct($uuid) {
|
public function __construct($uuid) {
|
||||||
global $cfg;
|
global $cfg;
|
||||||
parent::pApiTree($uuid);
|
parent::__construct($uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function _buildRenderTree($tree) {
|
public function _buildRenderTree($tree) {
|
||||||
|
|
|
@ -27,7 +27,7 @@ class pApiContentAllocationSelectBox extends pApiTree {
|
||||||
public function __construct($uuid) {
|
public function __construct($uuid) {
|
||||||
global $cfg;
|
global $cfg;
|
||||||
|
|
||||||
parent::pApiTree($uuid);
|
parent::__construct($uuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function _buildRenderTree($tree) {
|
public function _buildRenderTree($tree) {
|
||||||
|
|
Laden …
In neuem Issue referenzieren