Commit 21dcae218680768fe8e9f1e84627d3220c64b704
Made some adjustments to Twitter search result formatting.
| |   |
| 24 | 24 | function getNeutralTitle(){ |
| 25 | 25 | return $this->title; |
| 26 | 26 | } |
|
| 27 | 28 | function getSingleTitle() { |
| return $this->author .': '. parent::getSingleTitle(); |
| $parts = explode(' ', $this->author); |
| $username = "<em>$parts[0]</em>"; |
| return $username .': '. parent::getSingleTitle(); |
| } |
|
| function getIcon() { |
| return Entry::getIcon(); |
| } |
|
| function timeSince() { |
| return '<a href="'.$this->link.'">'. parent::timeSince() .'</a>'; |
| 29 | 40 | } |
| 30 | 41 | } |