mirror of
https://gh.wpcy.net/https://github.com/netcccyun/easypanel.git
synced 2026-04-23 03:52:25 +08:00
12 lines
No EOL
223 B
PHP
12 lines
No EOL
223 B
PHP
<?php
|
|
|
|
function smarty_function_dispatch($params, $template)
|
|
{
|
|
$saved_REQUEST = $_REQUEST;
|
|
$_REQUEST = $params;
|
|
$str = dispatch($params["c"], $params["a"]);
|
|
$_REQUEST = $saved_REQUEST;
|
|
return $str;
|
|
}
|
|
|
|
?>
|