소스 검색

Avoid E_STRICT errors

pdontthink 17 년 전
부모
커밋
4b2a10c429
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      src/squirrelmail_rpc.php

+ 2 - 3
src/squirrelmail_rpc.php

@@ -97,9 +97,8 @@ $oTemplate->header('Cache-Control: no-cache');
   * to add in the future.
   *
   */
-$handled_by_plugin = boolean_hook_function('squirrelmail_rpc',
-                                           $temp=array(&$rpc_action),
-                                           1);
+$temp = array(&$rpc_action);
+$handled_by_plugin = boolean_hook_function('squirrelmail_rpc', $temp, 1);