Plugin Directory

Changeset 3333178


Ignore:
Timestamp:
07/23/2025 10:39:28 PM (8 months ago)
Author:
sstukov
Message:

Tested with WP 6.5.3 and updated code

Location:
userecho/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • userecho/trunk/readme.txt

    r2481799 r3333178  
    33Donate link: https://userecho.com/
    44Tags: feedback, users community, widget, ideas, helpdesk, livechat
    5 Requires at least: 2.8
    6 Tested up to: 5.6.2
    7 Stable tag: 1.0.26
     5Requires at least: 3.0
     6Tested up to: 6.8.2
     7Stable tag: 1.0.27
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
  • userecho/trunk/userecho.php

    r2481799 r3333178  
    22/*
    33Plugin Name: UserEcho for Wordpress - collect feedback for your blog
    4 Version: 1.0.26
     4Version: 1.0.27
    55Plugin URI: https://userecho.com
    66Author: UserEcho
     
    463463
    464464class UserEcho_SSO_Widget extends WP_Widget {
    465     //public function __construct() {
    466     public function UserEcho_SSO_Widget() {
     465    public function __construct() {
    467466        $widget_ops = array( 'classname' => 'userecho_sso_widget', 'description' => __( 'Adds a customizable link to UserEcho community with SSO support', 'UserEcho' ) );
    468467        parent::__construct( 'userecho_sso_widget', __( 'UserEcho link', 'UserEcho' ), $widget_ops );
    469468    }
    470 
    471     //Because widget_name::__construct() calls WP_Widget::WP_Widget(), which in turn calls widget_name::__construct() etc.
    472 
    473     //A simple solution would be to make widget_name::__construct() call WP_Widget::__construct() directly.
    474469
    475470    public function form( $instance ) {
Note: See TracChangeset for help on using the changeset viewer.