mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
PHP7 fix, unsetting function arguments (for quitening IDE warning of not using them) before calling func_get_args() return no longer any arguments, need to be done after
This commit is contained in:
parent
a03748fbb2
commit
2e148944cd
@ -315,9 +315,10 @@ abstract class egw_framework
|
|||||||
*/
|
*/
|
||||||
public static function refresh_opener($msg, $app, $id=null, $type=null, $targetapp=null, $replace=null, $with=null, $msg_type=null)
|
public static function refresh_opener($msg, $app, $id=null, $type=null, $targetapp=null, $replace=null, $with=null, $msg_type=null)
|
||||||
{
|
{
|
||||||
unset($msg, $app, $id, $type, $targetapp, $replace, $with, $msg_type); // used only via func_get_args();
|
|
||||||
//error_log(__METHOD__.'('.array2string(func_get_args()).')');
|
//error_log(__METHOD__.'('.array2string(func_get_args()).')');
|
||||||
self::$extra['refresh-opener'] = func_get_args();
|
self::$extra['refresh-opener'] = func_get_args();
|
||||||
|
|
||||||
|
unset($msg, $app, $id, $type, $targetapp, $replace, $with, $msg_type); // used only via func_get_args();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -330,8 +331,9 @@ abstract class egw_framework
|
|||||||
*/
|
*/
|
||||||
public static function message($msg, $type='success')
|
public static function message($msg, $type='success')
|
||||||
{
|
{
|
||||||
unset($msg, $type); // used only via func_get_args();
|
|
||||||
self::$extra['message'] = func_get_args();
|
self::$extra['message'] = func_get_args();
|
||||||
|
|
||||||
|
unset($msg, $type); // used only via func_get_args();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -343,10 +345,11 @@ abstract class egw_framework
|
|||||||
*/
|
*/
|
||||||
public static function popup($link, $target='_blank', $popup='640x480')
|
public static function popup($link, $target='_blank', $popup='640x480')
|
||||||
{
|
{
|
||||||
unset($link, $target, $popup); // used only via func_get_args()
|
|
||||||
// default params are not returned by func_get_args!
|
// default params are not returned by func_get_args!
|
||||||
$args = func_get_args()+array(null, '_blank', '640x480');
|
$args = func_get_args()+array(null, '_blank', '640x480');
|
||||||
|
|
||||||
|
unset($link, $target, $popup); // used only via func_get_args()
|
||||||
|
|
||||||
if (egw_json_request::isJSONRequest())
|
if (egw_json_request::isJSONRequest())
|
||||||
{
|
{
|
||||||
egw_json_response::get()->apply('egw.open_link', $args);
|
egw_json_response::get()->apply('egw.open_link', $args);
|
||||||
|
Loading…
Reference in New Issue
Block a user