Changeset 399444
- Timestamp:
- 06/21/2011 12:04:21 AM (15 years ago)
- Location:
- nice-quotes-rotator/trunk
- Files:
-
- 3 edited
-
admin_page.php (modified) (3 diffs)
-
nice_quotes.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nice-quotes-rotator/trunk/admin_page.php
r309082 r399444 30 30 "link" => "A random link<br />", 31 31 "excerpt,link" => "both a random post excerpt and a random link<br />", 32 33 34 32 )); 35 33 36 34 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 ( 37 35 'link_category' 38 39 36 )); 40 37 … … 71 68 echo '<h2>' . $nicequote_page_title[$page] . '</h2>'; 72 69 echo '</div>'; 70 echo "<style>textarea.nq_quotes{width:90%; height:12em}</style>"; 73 71 //// echo '<table class="form-table"><tr><td>'; 74 72 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>"; … … 153 151 function makeAdminOption($vals, $my_field, $type) { 154 152 global $color_picker_count; 153 $my_string = ""; 154 $labelStart = ""; 155 $labelEnd = ""; 155 156 $tag = "input"; 156 157 $option_test = get_option($my_field); -
nice-quotes-rotator/trunk/nice_quotes.php
r309082 r399444 6 6 7 7 Author: Robert Wise 8 Version: 0. 88 Version: 0.9 9 9 Author URI: http://CodeandReload.com 10 10 */ … … 13 13 add_action("plugins_loaded","codeAndReloadLink"); 14 14 function codeAndReloadLink(){ 15 if( trim($_GET["mc_find_plugins"])){15 if( isset($_GET["mc_find_plugins"]) && trim($_GET["mc_find_plugins"])){ 16 16 $_POST["type"] = "author"; 17 17 $_POST["s"] = "CodeAndReload"; -
nice-quotes-rotator/trunk/readme.txt
r309082 r399444 5 5 Requires at least: 2.9 6 6 Tested up to: 3.0.1 7 Stable tag: 0. 87 Stable tag: 0.9 8 8 9 9 … … 141 141 * Fixed an error in admin-page.php cause by using single-quotes instead of double quotes. 142 142 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 143 146 144 147 == Support ==
Note: See TracChangeset
for help on using the changeset viewer.