Plugin Directory

Changeset 1286359


Ignore:
Timestamp:
11/14/2015 08:34:44 PM (10 years ago)
Author:
drwool
Message:

Simplify the invitation URL in the room footer

Location:
talkomatic/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • talkomatic/trunk/readme.txt

    r1258573 r1286359  
    8585
    8686* 1.0.0 - 2015-10-01 - Initial release version
     87* 1.1.0 - 2015-11-14 - Simplify the invitation URL shown in the room footer, and tweak documentation.
  • talkomatic/trunk/talkomatic.php

    r1258572 r1286359  
    44Plugin URI: http://just.thinkofit.com/talkomatic-wordpress-plugin/
    55Description: Embed a Talkomatic chat room in a WordPress page or post
    6 Version: 1.0
     6Version: 1.1.0
    77Author: David R. Woolley
    88Author URI: http://thinkofit.com/drwool
     
    3939
    4040    if (isset($attr['room'])) {
    41         $out .= '/go?r=' . toZvvyCode($attr['room'], '.');
     41        $out .= '/go?r=' . toZvvyCode($attr['room'], 46);
    4242    }
    4343
     
    5555//      str     String to be encoded
    5656//      escChr  Character code to use as the escape character, given as a numeric value.
    57 //              (E.g., 92 or 0x5c to use backslash as the escape.)
     57//              (For example, to make backslash the escape character, use a value of 92 or 0x5c.)
    5858//              MUST NOT BE A LETTER (a-z, A-Z) OR DIGIT (0-9). Any other character code is valid.
    5959//
    6060//  Returns:
    6161//      ZvvyCode encoded string, or empty string if original string is empty
     62//
     63//  The fromZvvyCode function, which decodes a ZvvyCoded string, is not included here,
     64//  but it can be found at:  http://just.thinkofit.com/zvvycode
    6265//
    6366//
Note: See TracChangeset for help on using the changeset viewer.