Skip to content

Commit

Permalink
placate PHP 5.2?
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkingorg committed Jan 29, 2012
1 parent 8baa4aa commit c2bdd90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions widget.php
Expand Up @@ -2,13 +2,15 @@

class AKTT_Widget extends WP_Widget {
function __construct() {
$title = __('Twitter Tools', 'twitter-tools');
$desc = __('Show recent tweets for a Twitter account.', 'twitter-tools');
// widget actual processes
parent::__construct(
'aktt-widget',
__('Twitter Tools', 'twitter-tools'),
$title,
array(
'classname' => 'aktt-widget',
'description' => __('Show your recent tweets.', 'twitter-tools')
'description' => $desc
)
);
}
Expand Down

0 comments on commit c2bdd90

Please sign in to comment.