Changeset 5129
- Timestamp:
- 01/23/08 21:51:18 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/control/blog/detail/index.php
r5107 r5129 8 8 require ROOT . '/lib/piece/owner/header.php'; 9 9 require ROOT . '/lib/piece/owner/contentMenu.php'; 10 requireComponent('Textcube.Function.misc'); 10 11 11 12 global $database; … … 104 105 <?php echo _f('이 블로그에는 총 %1개의 트랙백이 있습니다.', POD::queryCell("SELECT Count(*) FROM {$database['prefix']}Trackbacks WHERE blogid = ".$bid));?><br/> 105 106 <?php echo _f('이 블로그에는 총 %1개의 코멘트가 있습니다.', POD::queryCell("SELECT Count(*) FROM {$database['prefix']}Comments WHERE blogid = ".$bid));?><br/> 106 <?php echo _f('이 블로그가 사용중인 첨부파일의 총 용량은 %1 입니다.', getSizeHumanReadable(POD::queryCell(" SELECT sum( size ) FROM `{$database['prefix']}Attachments` WHERE blogid = ".$bid)));?>107 <?php echo _f('이 블로그가 사용중인 첨부파일의 총 용량은 %1 입니다.', misc::getSizeHumanReadable(POD::queryCell(" SELECT sum( size ) FROM `{$database['prefix']}Attachments` WHERE blogid = ".$bid)));?> 107 108 </div> 108 109 </div> … … 160 161 </thead> 161 162 <tbody><?php 162 $teamblog = POD::queryAll("SELECT * FROM `{$database['prefix']} teamblog` WHERE blogid = " . $bid);163 $teamblog = POD::queryAll("SELECT * FROM `{$database['prefix']}Teamblog` WHERE blogid = " . $bid); 163 164 foreach ($teamblog as $row){ 164 165 echo "<tr>";
