-fix undefined function error
This commit is contained in:
parent
292b8f5c5d
commit
7548abc1b1
1 changed files with 2 additions and 2 deletions
|
@ -443,7 +443,7 @@ class StoredFile {
|
|||
$serverName = $_SERVER['SERVER_NAME'];
|
||||
$serverPort = $_SERVER['SERVER_PORT'];
|
||||
|
||||
return constructGetFileUrl($serverName, $serverPort);
|
||||
return $this->constructGetFileUrl($serverName, $serverPort);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -456,7 +456,7 @@ class StoredFile {
|
|||
$serverName = $CC_CONFIG['baseUrl'];
|
||||
$serverPort = $CC_CONFIG['basePort'];
|
||||
|
||||
return constructGetFileUrl($serverName, $serverPort);
|
||||
return $this->constructGetFileUrl($serverName, $serverPort);
|
||||
}
|
||||
|
||||
private function constructGetFileUrl($p_serverName, $p_serverPort){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue