Changeset 1286359
- Timestamp:
- 11/14/2015 08:34:44 PM (10 years ago)
- Location:
- talkomatic/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
talkomatic.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
talkomatic/trunk/readme.txt
r1258573 r1286359 85 85 86 86 * 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 4 4 Plugin URI: http://just.thinkofit.com/talkomatic-wordpress-plugin/ 5 5 Description: Embed a Talkomatic chat room in a WordPress page or post 6 Version: 1. 06 Version: 1.1.0 7 7 Author: David R. Woolley 8 8 Author URI: http://thinkofit.com/drwool … … 39 39 40 40 if (isset($attr['room'])) { 41 $out .= '/go?r=' . toZvvyCode($attr['room'], '.');41 $out .= '/go?r=' . toZvvyCode($attr['room'], 46); 42 42 } 43 43 … … 55 55 // str String to be encoded 56 56 // 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.) 58 58 // MUST NOT BE A LETTER (a-z, A-Z) OR DIGIT (0-9). Any other character code is valid. 59 59 // 60 60 // Returns: 61 61 // 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 62 65 // 63 66 //
Note: See TracChangeset
for help on using the changeset viewer.