Plugin Directory

Changeset 399444


Ignore:
Timestamp:
06/21/2011 12:04:21 AM (15 years ago)
Author:
CodeAndReload
Message:
 
Location:
nice-quotes-rotator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • nice-quotes-rotator/trunk/admin_page.php

    r309082 r399444  
    3030     "link" => "A random link<br />",
    3131     "excerpt,link" => "both a random post excerpt and a random link<br />",
    32 
    33 
    3432    ));
    3533
    3634    nicequote_add_settings_field('nq_links', 'Links from the following link-category may be added to the list of quotes depending on the option above.', 'dropdown_terms', "nicequote-options", 'nicequote_setting_section', array (
    3735        'link_category'
    38 
    3936    ));
    4037
     
    7168    echo '<h2>' . $nicequote_page_title[$page] . '</h2>';
    7269    echo '</div>';
     70    echo "<style>textarea.nq_quotes{width:90%; height:12em}</style>";
    7371////    echo '<table class="form-table"><tr><td>';
    7472    echo "<br /><a href='" .get_bloginfo("url"). "/wp-admin/plugin-install.php?tab=search&mc_find_plugins=TRUE'>" .__("Find more plugins by this author"). "</a>";
     
    153151function makeAdminOption($vals, $my_field, $type) {
    154152    global $color_picker_count;
     153    $my_string = "";
     154    $labelStart = "";
     155    $labelEnd = "";
    155156    $tag = "input";
    156157    $option_test = get_option($my_field);
  • nice-quotes-rotator/trunk/nice_quotes.php

    r309082 r399444  
    66
    77Author: Robert Wise
    8 Version: 0.8
     8Version: 0.9
    99Author URI: http://CodeandReload.com
    1010*/
     
    1313    add_action("plugins_loaded","codeAndReloadLink");
    1414    function codeAndReloadLink(){
    15         if(trim($_GET["mc_find_plugins"])){
     15        if( isset($_GET["mc_find_plugins"]) && trim($_GET["mc_find_plugins"])){
    1616            $_POST["type"] = "author";
    1717            $_POST["s"] = "CodeAndReload";
  • nice-quotes-rotator/trunk/readme.txt

    r309082 r399444  
    55Requires at least: 2.9 
    66Tested up to: 3.0.1 
    7 Stable tag: 0.8
     7Stable tag: 0.9
    88
    99
     
    141141* Fixed an error in admin-page.php cause by using single-quotes instead of double quotes.
    142142
     143= 0.9 = 
     144* Fixed an error in admin-page.php cause by un-initialized variables. Also increased the size of the textarea for entering quotes to 90% width and 12em height.
     145
    143146
    144147== Support ==
Note: See TracChangeset for help on using the changeset viewer.