Changeset 454311
- Timestamp:
- 10/22/2011 05:40:05 PM (14 years ago)
- Location:
- surveys/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
surveys.php (modified) (1 diff)
-
wpframe.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
surveys/trunk/readme.txt
r453326 r454311 5 5 Requires at least: 2.5 6 6 Tested up to: 3.2.1 7 Stable tag: 1.01. 77 Stable tag: 1.01.8 8 8 9 9 The Surveys WordPress plugin lets you add surveys to your blog. You can let the vistors take surveys and see the result from the admin side. … … 74 74 * Transilation works as expected. 75 75 * Abilty to Delete all responses added. 76 77 = 1.01.8 = 78 * Bugfix is internationalization part. -
surveys/trunk/surveys.php
r453326 r454311 4 4 Plugin URI: http://www.bin-co.com/tools/wordpress/plugins/surveys/ 5 5 Description: The Surveys WordPress plugin lets you add surveys to your blog. You can let the vistors take surveys and see the result from the admin side. 6 Version: 1.01. 76 Version: 1.01.8 7 7 Author: Binny V A 8 8 Author URI: http://www.binnyva.com/ -
surveys/trunk/wpframe.php
r453326 r454311 50 50 /// Globalization function - Returns the transilated string 51 51 function t($message) { 52 return __(call_user_func_array('sprintf', array($message) + func_get_args()) , $GLOBALS['wpframe_plugin_name']); 52 $args = func_get_args(); 53 return __(call_user_func_array('sprintf', $args), $GLOBALS['wpframe_plugin_name']); 53 54 } 54 55 } … … 57 58 /// Globalization function - prints the transilated string 58 59 function e($message) { 59 _e(call_user_func_array('sprintf', array($message) + func_get_args()) , $GLOBALS['wpframe_plugin_name']); 60 $args = func_get_args(); 61 _e(call_user_func_array('sprintf', $args) , $GLOBALS['wpframe_plugin_name']); 60 62 } 61 63 }
Note: See TracChangeset
for help on using the changeset viewer.