Changeset 161
- Timestamp:
- 03/11/08 08:07:48 (5 years ago)
- Location:
- trunk/Phergie/Plugin
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/Phergie/Plugin/Karma.php
r141 r161 84 84 $this->fixedKarma = array 85 85 ( 86 'phergie' => '%s has karma of awesome', 86 87 'pi' => 'pi has karma of ' . M_PI, 87 88 'chucknorris' => '%s has karma of Warning: Integer out of range', -
trunk/Phergie/Plugin/ModuleList.php
r155 r161 133 133 // If the message is empty, aka no args were passed, return the full plugin list 134 134 if (empty($message)) { 135 sort($pluginData['all']); 135 136 $message = ($args['v'] ? 'Verbose' : 'Plugins') . ': '.implode(', ', $pluginData['all']); 136 137 } -
trunk/Phergie/Plugin/Url.php
r145 r161 20 20 * @var string 21 21 */ 22 protected $format = '% title% [ %link% ]';22 protected $format = '%nick%: %title% [ %link% ]'; 23 23 24 24 /** … … 121 121 $this->event->getSource(), 122 122 str_replace( 123 array('%title%', '%link%' ),124 array($title, $tinyUrl ),123 array('%title%', '%link%', '%nick%'), 124 array($title, $tinyUrl, $this->event->getNick()), 125 125 $this->format 126 126 )