Changeset 404074
- Timestamp:
- 07/03/2011 02:32:25 PM (15 years ago)
- Location:
- rainmakermoxie/trunk
- Files:
-
- 1 added
- 2 edited
-
images/hiim.png (added)
-
rainmakermoxie.php (modified) (6 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rainmakermoxie/trunk/rainmakermoxie.php
r403583 r404074 5 5 Plugin URI: http://wordpress.org/extend/plugins/rainmakermoxie/ 6 6 Description: Enter an email address and the RainmakerMoxie Plugin retrieves contact information and displays it in the sidebar. <strong>After activation:</strong> <a href="options-general.php?page=rainmakermoxie/rainmakermoxie.php">click here to configure the Plugin</a>. 7 Version: 1.0. 87 Version: 1.0.9 8 8 Author: Neil Simon 9 9 Author URI: http://solidcode.com/ … … 32 32 { 33 33 // Internal plugin constants 34 define ('RAINMAKER_MOXIE_PLUGIN_VERSION', '1.0. 8');34 define ('RAINMAKER_MOXIE_PLUGIN_VERSION', '1.0.9'); 35 35 define ('RAINMAKER_MOXIE_PLUGIN_VERSION_FOR_HIDDEN_DIV', 'RainmakerMoxie-' . RAINMAKER_MOXIE_PLUGIN_VERSION); 36 36 define ('RAINMAKER_MOXIE_SETTINGS_OPTIONS', 'rainmakerMoxieOptions'); … … 518 518 if (($socialProfile->url != "") && ($socialProfile->username != "")) 519 519 { 520 $socialLinks [$socialProfile->type] = array (" url" => $socialProfile->url,521 " type" => $socialProfile->type);520 $socialLinks [$socialProfile->type] = array ("type" => $socialProfile->type, 521 "url" => $socialProfile->url); 522 522 } 523 523 } … … 526 526 { 527 527 // Add social link 528 $socialLinks [$socialProfile->type] = array (" url" => $socialProfile->url,529 " type" => $socialProfile->type);528 $socialLinks [$socialProfile->type] = array ("type" => $socialProfile->type, 529 "url" => $socialProfile->url); 530 530 } 531 531 } … … 533 533 if (count ($socialLinks) > 0) 534 534 { 535 // Sort alpha 536 asort ($socialLinks); 537 535 538 // Append the social links 536 539 $htmlOut .= rainmakerMoxie_appendSocialLinks ($socialLinks); … … 579 582 "gowalla" => array ("png" => $imageFolder . "/gowalla.png", "textToDisplay" => "Gowalla"), 580 583 "gravatar" => array ("png" => $imageFolder . "/gravatar.png", "textToDisplay" => "Gravatar"), 584 "hi.im" => array ("png" => $imageFolder . "/hiim.png", "textToDisplay" => "Hi, I'm"), 581 585 "huffduffer" => array ("png" => $imageFolder . "/huffduffer.png", "textToDisplay" => "Huffduffer"), 582 586 "identica" => array ("png" => $imageFolder . "/identica.png", "textToDisplay" => "Identica"), -
rainmakermoxie/trunk/readme.txt
r403583 r404074 76 76 == Changelog == 77 77 78 = 1.0.9 : 2011-07-03 = 79 * Added social clicklet hi.im 80 * Sort displayed social links 81 78 82 = 1.0.8 : 2011-07-01 = 79 83 * appendSocialLinks(): Check for blank URLs before appending links.
Note: See TracChangeset
for help on using the changeset viewer.