mirror of
https://github.com/e107inc/e107.git
synced 2025-08-12 09:34:54 +02:00
Allow for non-hashed cache files. File-Handler getRemoteContent() debugging methods added.
This commit is contained in:
@@ -99,7 +99,12 @@ class e_file
|
||||
|
||||
|
||||
|
||||
private $authKey = false; // Used when retrieving files from e107.org.
|
||||
private $authKey = false; // Used when retrieving files from e107.org.
|
||||
|
||||
|
||||
private $error = null;
|
||||
|
||||
private $errornum = null;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
@@ -169,8 +174,19 @@ class e_file
|
||||
$this->mode= $mode;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public function getErrorMessage()
|
||||
{
|
||||
return $this->error;
|
||||
}
|
||||
|
||||
|
||||
public function getErrorCode()
|
||||
{
|
||||
return $this->errornum;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Read files from given path
|
||||
*
|
||||
|
Reference in New Issue
Block a user