Plugin Directory

Changeset 2371594


Ignore:
Timestamp:
08/29/2020 04:01:32 PM (6 years ago)
Author:
chatroll
Message:

Verify plugin on latest version of WordPress

Location:
chatroll-live-chat/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chatroll-live-chat/trunk/chatroll.php

    r1247904 r2371594  
    5050        $defaults = $this->appendPlatformDefaultAttr($defaults);       // Generate default parameters, based on platform specific user info
    5151        $attr = $this->shortcode_atts($defaults, $attr);   // Merge specified parameter values w/ defaults
     52
     53        // Format width and height attributes
     54        if (is_numeric($attr['width'])) {
     55            $attr['width'] = $attr['width'] . "px";
     56        }
     57        if (is_numeric($attr['height'])) {
     58            $attr['height'] = $attr['height'] . "px";
     59        }
    5260
    5361        // Generate Chatroll iframe
  • chatroll-live-chat/trunk/readme.txt

    r1667181 r2371594  
    22Contributors: chatroll
    33Donate link: https://chatroll.com
    4 Tags: chatroll, live, chat, buddypress, facebook, twitter, sidebar, shoutbox, widget
     4Tags: chatroll, live, chat, live chat, buddypress, facebook, twitter, sidebar, shoutbox, widget
    55Requires at least: 2.8
    6 Tested up to: 4.7
    7 Stable tag: 2.3.3
     6Tested up to: 5.5
     7Stable tag: 2.4.0
    88
    99Add live chat to your WordPress or BuddyPress sidebar, posts and pages. Chatroll can be fully customized to match your site's design.
     
    104104== Changelog ==
    105105
     106= 2.4.0 =
     107* Tested on WordPress 5.5
     108
    106109= 2.3.3 =
    107110* Add support for WordPress Social Login plugin
  • chatroll-live-chat/trunk/wp-chatroll.php

    r1667181 r2371594  
    44 * Plugin URI: https://chatroll.com
    55 * Description: Chatroll lets you easily add live chat to your WordPress sidebar, posts and pages. Chatroll can be fully customized to match your site's design. Supports WordPress profiles and optional Facebook and Twitter login. To get started, go to Chatroll.com to create a chat and follow the WordPress embed instructions.
    6  * Version: 2.3.3
     6 * Version: 2.4.0
    77 * Author: Chatroll
    88 * Author URI: https://chatroll.com
     
    1111
    1212/* 
    13     Copyright 2010-2017  Chatroll / Jonathan McGee (email : support@chatroll.com)
     13    Copyright 2010-2020  Chatroll (email : support@chatroll.com)
    1414
    1515    This program is free software; you can redistribute it and/or modify
Note: See TracChangeset for help on using the changeset viewer.