Changeset 2152:e0cb51d6543f for inc
- Timestamp:
- 09/29/13 15:16:01 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.pager.php
r2138 r2152 409 409 '<th scope="col">'.__('Date').'</th>'. 410 410 '<th scope="col" class="txt-center">'.__('Status').'</th>'. 411 '<th scope="col" abbr="entry">'.__('Entry title').'</th>'.411 '<th scope="col" abbr="entry">'.__('Entry').'</th>'. 412 412 '</tr>%s</table></div>'; 413 413 … … 469 469 470 470 $post_title = html::escapeHTML($this->rs->post_title); 471 if (mb_strlen($post_title) > 60) {472 $post_title = mb_strcut($post_title,0, 57).'...';471 if (mb_strlen($post_title) > 70) { 472 $post_title = mb_strcut($post_title,0,67).'...'; 473 473 } 474 474 $comment_title = sprintf(__('Edit the %1$s from %2$s'), … … 489 489 '<td class="nowrap count">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->comment_dt).'</td>'. 490 490 '<td class="nowrap status txt-center">'.$img_status.'</td>'. 491 '<td class="nowrap "><a href="'.$post_url.'">'.491 '<td class="nowrap discrete"><a href="'.$post_url.'">'. 492 492 html::escapeHTML($post_title).'</a>'. 493 493 ($this->rs->post_type != 'post' ? ' ('.html::escapeHTML($this->rs->post_type).')' : '').'</td>';
Note: See TracChangeset
for help on using the changeset viewer.