Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 * xml을 초기화 없이 사용하는 플러그인들이 문제가 있을 수 있는 부분 수정
 * 인덴테이션 수정
  • Loading branch information
inureyes committed Aug 21, 2007
1 parent 1302d74 commit b4e9862
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions blog/owner/center/dashboard/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -335,15 +335,15 @@ function checkTextcubeVersion() {
</thead>
<tbody>
<?php
$comments = getRecentComments($blogid,5);
foreach ($comments as $comment) {
$comments = getRecentComments($blogid,5);
foreach ($comments as $comment) {
?>
<tr>
<td class="title"><a href="<?php echo $blogURL."/".$comment['entry']."#comment".$comment['id'];?>"><?php echo htmlspecialchars(UTF8::lessenAsEm($comment['comment'], 25));?></a></td>
<td class="date"><?php echo Timestamp::format('%m/%d',$comment['written']);?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
Expand All @@ -357,15 +357,15 @@ function checkTextcubeVersion() {
</thead>
<tbody>
<?php
list($commentNotifies,$paging) = getCommentsNotifiedWithPagingForOwner($blogid,0,null,null,null,1,5);
foreach ($commentNotifies as $comment) {
list($commentNotifies,$paging) = getCommentsNotifiedWithPagingForOwner($blogid,0,null,null,null,1,5);
foreach ($commentNotifies as $comment) {
?>
<tr>
<td class="title"><?php echo htmlspecialchars(UTF8::lessenAsEm($comment['comment'], 25));?></td>
<td class="date"><?php echo Timestamp::format('%m/%d',$comment['written']);?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
Expand All @@ -379,15 +379,15 @@ function checkTextcubeVersion() {
</thead>
<tbody>
<?php
$guestbooks = getRecentGuestbook($blogid,5);
foreach ($guestbooks as $guestbook) {
$guestbooks = getRecentGuestbook($blogid,5);
foreach ($guestbooks as $guestbook) {
?>
<tr>
<td class="title"><a href="<?php echo $blogURL."/guestbook#comment".$guestbook['id'];?>"><?php echo htmlspecialchars(UTF8::lessenAsEm($guestbook['comment'], 25));?></a></td>
<td class="date"><?php echo Timestamp::format('%m/%d',$guestbook['written']);?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
Expand All @@ -401,15 +401,15 @@ function checkTextcubeVersion() {
</thead>
<tbody>
<?php
$trackbacks = getRecentTrackbacks($blogid,5);
foreach ($trackbacks as $trackback) {
$trackbacks = getRecentTrackbacks($blogid,5);
foreach ($trackbacks as $trackback) {
?>
<tr>
<td class="title"><a href="<?php echo $blogURL."/".$trackback['entry']."#trackback".$trackback['id'];?>"><?php echo htmlspecialchars(UTF8::lessenAsEm($trackback['subject'], 25));?></a></td>
<td class="date"><?php echo Timestamp::format('%m/%d',$trackback['written']);?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
Expand Down

0 comments on commit b4e9862

Please sign in to comment.