You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// obsolete constructor in version wp 4.3.
// function qTranslateXWidget() {
// use this function in version wp 4.3
function __construct() {
$widget_ops = array('classname' => 'qtranxs_widget', 'description' => __('Allows your visitors to choose a Language.', 'qtranslate') );
// obsolete constructor call in version wp 4.3.
// $this->WP_Widget('qtranslate', __('qTranslate Language Chooser', 'qtranslate'), $widget_ops);
// use this call in version wp 4.3
parent::__construct('qtranslate', __('qTranslate Language Chooser', 'qtranslate'), $widget_ops);
}
The text was updated successfully, but these errors were encountered:
Issue by ursribi
Tuesday Sep 08, 2015 at 06:13 GMT
Originally opened as qTranslate-Team/qtranslate-x#250
/* qTranslate-X Widget */
class qTranslateXWidget extends WP_Widget {
// obsolete constructor in version wp 4.3.
// function qTranslateXWidget() {
// use this function in version wp 4.3
function __construct() {
$widget_ops = array('classname' => 'qtranxs_widget', 'description' => __('Allows your visitors to choose a Language.', 'qtranslate') );
// obsolete constructor call in version wp 4.3.
// $this->WP_Widget('qtranslate', __('qTranslate Language Chooser', 'qtranslate'), $widget_ops);
// use this call in version wp 4.3
parent::__construct('qtranslate', __('qTranslate Language Chooser', 'qtranslate'), $widget_ops);
}
The text was updated successfully, but these errors were encountered: