Changeset 828990
- Timestamp:
- 12/27/2013 10:36:29 AM (12 years ago)
- Location:
- twitterlink-comments
- Files:
-
- 39 added
- 2 edited
-
tags/1.34 (added)
-
tags/1.34/images (added)
-
tags/1.34/images/facebook.png (added)
-
tags/1.34/images/linkedin.png (added)
-
tags/1.34/images/no_spam_button.jpg (added)
-
tags/1.34/images/playbutton.png (added)
-
tags/1.34/images/playbuttonfront.png (added)
-
tags/1.34/images/skype.png (added)
-
tags/1.34/images/twitter.gif (added)
-
tags/1.34/images/twitter.png (added)
-
tags/1.34/include (added)
-
tags/1.34/include/options-page.php (added)
-
tags/1.34/js (added)
-
tags/1.34/js/script.js (added)
-
tags/1.34/lang (added)
-
tags/1.34/lang/default.mo (added)
-
tags/1.34/lang/default.po (added)
-
tags/1.34/lang/twitlink-ar_AR.mo (added)
-
tags/1.34/lang/twitlink-ar_AR.po (added)
-
tags/1.34/lang/twitlink-be_BY.mo (added)
-
tags/1.34/lang/twitlink-be_BY.po (added)
-
tags/1.34/lang/twitlink-de_DE.po (added)
-
tags/1.34/lang/twitlink-fr_FR.mo (added)
-
tags/1.34/lang/twitlink-fr_FR.po (added)
-
tags/1.34/lang/twitlink-it_IT.mo (added)
-
tags/1.34/lang/twitlink-it_IT.po (added)
-
tags/1.34/lang/twitlink-ru_RU.mo (added)
-
tags/1.34/lang/twitlink-ru_RU.po (added)
-
tags/1.34/lang/twitlink-sv_SE.mo (added)
-
tags/1.34/lang/twitlink-sv_SE.po (added)
-
tags/1.34/readme.txt (added)
-
tags/1.34/screenshot-1.jpg (added)
-
tags/1.34/screenshot-2.jpg (added)
-
tags/1.34/style (added)
-
tags/1.34/style/blank.gif (added)
-
tags/1.34/twitterlink-comments.php (added)
-
tags/1.34/uninstall.php (added)
-
tags/1.34/videos (added)
-
tags/1.34/videos/starthere.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/twitterlink-comments.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
twitterlink-comments/trunk/readme.txt
r821768 r828990 4 4 Tags: twitter, comment form, follow me, twitterlink, twitlinkid 5 5 Requires at least: 3.0 6 Tested up to: 3. 77 Stable tag: 1.3 26 Tested up to: 3.8 7 Stable tag: 1.34 8 8 9 9 Allow your commentators to include their Twitter username along with their comment so a follow-me link can be displayed with their details on the list of comments. … … 68 68 69 69 == Upgrade Notice == 70 71 = 1.34 = 72 73 readme and remove fancybox 74 fixed: undefined indexes on checkbox options check 70 75 71 76 = 1.33 = -
twitterlink-comments/trunk/twitterlink-comments.php
r821768 r828990 3 3 Plugin URI: http://comluv.com/ 4 4 Description: Plugin to show a link to follow the comment author on twitter if they have entered in their username at least once in the comment form 5 Version: 1.3 35 Version: 1.34 6 6 Author: Andy Bailey 7 7 Author URI: http://comluv.com … … 41 41 $local_pages = array ('plugins.php', 'options-general.php' ); 42 42 // check if translation needed on current page 43 if (in_array ( $pagenow, $local_pages ) || in_array ( $_GET ['page'], $local_pages)) {43 if (in_array ( $pagenow, $local_pages ) || (isset($_GET['page']) && in_array ( $_GET ['page'], $local_pages ))) { 44 44 $this->handle_load_domain (); 45 45 } … … 510 510 $dbtwitter = $wpdb->get_var($wpdb->prepare("SELECT twitid FROM {$wpdb->prefix}wptwitipid WHERE email = %s",$email)); 511 511 // set this->twitter_id 512 if( $options['use_profile'] == 'on'){512 if(isset($options['use_profile']) && $options['use_profile'] == 'on'){ 513 513 $user = get_user_by_email($email); 514 514 $id = $user->ID;
Note: See TracChangeset
for help on using the changeset viewer.