mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR: Removed PHP 5.3-only code from SSViewerTest.
This commit is contained in:
parent
1535ce6d36
commit
d896c7dc03
@ -1017,7 +1017,8 @@ class SSViewerTest_GlobalProvider implements TemplateGlobalProvider, TestOnly {
|
||||
}
|
||||
|
||||
static function get_argmix() {
|
||||
return 'z' . implode(':', func_get_args()) . 'z';
|
||||
$args = func_get_args();
|
||||
return 'z' . implode(':', $args) . 'z';
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user