관리자 페이지의 최근뉴스 제목 정렬 변경 및 날짜 크기 조절

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2040 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-26 12:45:18 +00:00
parent 19a2dff09d
commit 7fa44da21e
2 changed files with 3 additions and 2 deletions

View file

@ -54,6 +54,7 @@
if(!file_exists($cache_file) || filectime($cache_file)+ 60*60 < time()) {
FileHandler::getRemoteFile($newest_news_url, $cache_file);
}
if(file_exists($cache_file)) {
$oXml = new XmlParser();
$buff = $oXml->parse(FileHandler::readFile($cache_file));

View file

@ -58,8 +58,8 @@
<tbody>
<!--@foreach($news as $key => $val)-->
<tr>
<td><a href="{$val->url}" onclick="window.open(this.href);return false;">{$val->title}</a></td>
<td>{zdate($val->date,"Y-m-d H:i")}</td>
<td class="left">&nbsp;<a href="{$val->url}" onclick="window.open(this.href);return false;">{$val->title}</a></td>
<td class="tahoma">{zdate($val->date,"Y-m-d H:i")}</td>
</tr>
<!--@end-->
</tbody>