mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 14:22:54 +09:00
#438, 수정된 부분 중 php4에서 지원하지 않는 reference foreach를 제외.
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3928 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ca3ce43246
commit
a1b2b8313e
2 changed files with 7 additions and 5 deletions
|
|
@ -26,7 +26,7 @@
|
|||
* @brief 파일 목록 배열에서 optimized 첨자를 제거한 후 return
|
||||
**/
|
||||
function _getOptimizedRemoved($files) {
|
||||
foreach($files as $key => &$val) unset($key['optimized']);
|
||||
foreach($files as $key => $val) unset($files[$key]['optimized']);
|
||||
return $files;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue