From c2bdd903dbe2115d291abbed0744629fcd3c773b Mon Sep 17 00:00:00 2001 From: Alex King Date: Sun, 29 Jan 2012 16:52:15 -0700 Subject: [PATCH] placate PHP 5.2? --- widget.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/widget.php b/widget.php index 3c291fa..2a9e5f6 100644 --- a/widget.php +++ b/widget.php @@ -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 ) ); }