Plugin Directory

Changeset 404074


Ignore:
Timestamp:
07/03/2011 02:32:25 PM (15 years ago)
Author:
nsimon
Message:

Version 1.0.9

Location:
rainmakermoxie/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • rainmakermoxie/trunk/rainmakermoxie.php

    r403583 r404074  
    55Plugin URI: http://wordpress.org/extend/plugins/rainmakermoxie/
    66Description: 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.8
     7Version: 1.0.9
    88Author: Neil Simon
    99Author URI: http://solidcode.com/
     
    3232    {
    3333    // Internal plugin constants
    34     define ('RAINMAKER_MOXIE_PLUGIN_VERSION',                '1.0.8');
     34    define ('RAINMAKER_MOXIE_PLUGIN_VERSION',                '1.0.9');
    3535    define ('RAINMAKER_MOXIE_PLUGIN_VERSION_FOR_HIDDEN_DIV', 'RainmakerMoxie-' . RAINMAKER_MOXIE_PLUGIN_VERSION);
    3636    define ('RAINMAKER_MOXIE_SETTINGS_OPTIONS',              'rainmakerMoxieOptions');
     
    518518                if (($socialProfile->url != "") && ($socialProfile->username != ""))
    519519                    {
    520                     $socialLinks [$socialProfile->type] = array ("url"  => $socialProfile->url,
    521                                                                  "type" => $socialProfile->type);
     520                    $socialLinks [$socialProfile->type] = array ("type" => $socialProfile->type,
     521                                                                 "url"  => $socialProfile->url);
    522522                    }
    523523                }
     
    526526                {
    527527                // 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);
    530530                }
    531531            }
     
    533533        if (count ($socialLinks) > 0)
    534534            {
     535            // Sort alpha
     536            asort ($socialLinks);
     537
    535538            // Append the social links
    536539            $htmlOut .= rainmakerMoxie_appendSocialLinks ($socialLinks);
     
    579582                        "gowalla"         => array ("png" => $imageFolder . "/gowalla.png",         "textToDisplay" => "Gowalla"),
    580583                        "gravatar"        => array ("png" => $imageFolder . "/gravatar.png",        "textToDisplay" => "Gravatar"),
     584                        "hi.im"           => array ("png" => $imageFolder . "/hiim.png",            "textToDisplay" => "Hi, I'm"),
    581585                        "huffduffer"      => array ("png" => $imageFolder . "/huffduffer.png",      "textToDisplay" => "Huffduffer"),
    582586                        "identica"        => array ("png" => $imageFolder . "/identica.png",        "textToDisplay" => "Identica"),
  • rainmakermoxie/trunk/readme.txt

    r403583 r404074  
    7676== Changelog ==
    7777
     78= 1.0.9 : 2011-07-03 =
     79* Added social clicklet hi.im
     80* Sort displayed social links
     81
    7882= 1.0.8 : 2011-07-01 =
    7983* appendSocialLinks(): Check for blank URLs before appending links.
Note: See TracChangeset for help on using the changeset viewer.