MINOR: Removed PHP 5.3-only code from SSViewerTest.

This commit is contained in:
Sam Minnee 2012-03-09 18:32:10 +13:00
parent 1535ce6d36
commit d896c7dc03

View File

@ -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';
}
}