Merge branch 'multi-server' into storageareas
This commit is contained in:
commit
33b8405e0d
|
@ -34,7 +34,11 @@ class Server {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function Url() {
|
public function Url() {
|
||||||
return ZM_BASE_PROTOCOL . '://'. $this->Hostname();
|
if ( $this->Id() ) {
|
||||||
|
return ZM_BASE_PROTOCOL . '://'. $this->Hostname();
|
||||||
|
} else {
|
||||||
|
return ZM_BASE_PATH;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public function Hostname() {
|
public function Hostname() {
|
||||||
if ( isset( $this->{'Hostname'} ) and ( $this->{'Hostname'} != '' ) ) {
|
if ( isset( $this->{'Hostname'} ) and ( $this->{'Hostname'} != '' ) ) {
|
||||||
|
|
Loading…
Reference in New Issue