forked from extern/egroupware
fix for PHP Warning: Declaration of etemplate_request_cache::id() should be compatible with & etemplate_request::id()
This commit is contained in:
parent
597de72867
commit
a84a255bb7
@ -78,7 +78,7 @@ class etemplate_request_cache extends etemplate_request
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function id()
|
||||
public function &id()
|
||||
{
|
||||
//error_log(__METHOD__."() id=$this->id");
|
||||
return $this->id;
|
||||
|
@ -83,7 +83,7 @@ class etemplate_request_files extends etemplate_request
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function id()
|
||||
public function &id()
|
||||
{
|
||||
//error_log(__METHOD__."() id=$this->id");
|
||||
return $this->id;
|
||||
|
@ -68,7 +68,7 @@ class etemplate_request_session extends etemplate_request
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function id()
|
||||
public function &id()
|
||||
{
|
||||
//error_log(__METHOD__."() id=$this->id");
|
||||
return $this->id;
|
||||
|
Loading…
Reference in New Issue
Block a user