mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
사용자 아이디에 이미지이름/ 포인트 아이콘 적용시 img 태그를 이용하도록 수정하고 로그인 정보 위젯에도 적용
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2769 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f2f3b1ac71
commit
a99105455e
12 changed files with 148 additions and 133 deletions
|
|
@ -69,11 +69,9 @@
|
|||
function doOptimizedFile($filename, $targets, $type) {
|
||||
if(!file_exists($filename)) return $this->makeOptimizedFile($filename, $targets, $type);
|
||||
|
||||
$file_count = count($targets);
|
||||
|
||||
$mtime = filemtime($filename);
|
||||
for($i=0;$i<$file_count;$i++) {
|
||||
if($mtime < filemtime($targets[$i])) return $this->makeOptimizedFile($filename, $targets, $type);
|
||||
foreach($targets as $file) {
|
||||
if($mtime < filemtime($file)) return $this->makeOptimizedFile($filename, $targets, $type);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -85,9 +83,7 @@
|
|||
* 실제 css나 js의 내용을 합친 것을 구함
|
||||
**/
|
||||
// 대상 파일의 내용을 구해오고 css 파일일 경우 url()내의 경로를 변경
|
||||
$file_count = count($targets);
|
||||
for($i=0;$i<$file_count;$i++) {
|
||||
$file = $targets[$i];
|
||||
foreach($targets as $file) {
|
||||
$str = FileHandler::readFile($file);
|
||||
|
||||
$str = Context::convertEncodingStr($str);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue