Changeset 1024816
- Timestamp:
- 11/13/2014 02:41:44 AM (11 years ago)
- File:
-
- 1 edited
-
dutch-auction-masters/trunk/inc/Functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dutch-auction-masters/trunk/inc/Functions.php
r910844 r1024816 356 356 foreach ($items as $auction) { 357 357 $item = new stdClass (); 358 $item->title = (strlen($auction->title) > 18) ? substr($auction->title, 0, 16) . '...' : $auction->title;358 $item->title = (strlen($auction->title) > 18) ? mb_substr($auction->title, 0, 16) . '...' : $auction->title; 359 359 $item->alttitle = $auction->title; 360 360 $item->auction_link = get_permalink($auction->post_id);
Note: See TracChangeset
for help on using the changeset viewer.