Changeset 383262
- Timestamp:
- 05/10/2011 04:47:21 PM (15 years ago)
- Location:
- wp-seo-tags
- Files:
-
- 15 added
- 2 edited
-
tags/2.2.5.1 (added)
-
tags/2.2.5.1/readme.txt (added)
-
tags/2.2.5.1/screenshot-1.png (added)
-
tags/2.2.5.1/screenshot-2.png (added)
-
tags/2.2.5.1/screenshot-3.png (added)
-
tags/2.2.5.1/wp-seo-tags-be_BY.mo (added)
-
tags/2.2.5.1/wp-seo-tags-be_BY.po (added)
-
tags/2.2.5.1/wp-seo-tags-de_DE.mo (added)
-
tags/2.2.5.1/wp-seo-tags-de_DE.po (added)
-
tags/2.2.5.1/wp-seo-tags-fr_FR.mo (added)
-
tags/2.2.5.1/wp-seo-tags-fr_FR.po (added)
-
tags/2.2.5.1/wp-seo-tags-ru_RU.mo (added)
-
tags/2.2.5.1/wp-seo-tags-ru_RU.po (added)
-
tags/2.2.5.1/wp-seo-tags-template.php (added)
-
tags/2.2.5.1/wp-seo-tags.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-seo-tags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-seo-tags/trunk/readme.txt
r381388 r383262 5 5 Requires at least: 3.0 6 6 Tested up to: 3.1.2 7 Stable tag: 2.2.5 7 Stable tag: 2.2.5.1 8 8 9 9 Logs incoming queries from searchengines like Bing, Google and Yahoo and display them in your sidebar. … … 18 18 19 19 == Changelog == 20 21 22 <ul> 23 <span>2.2.5.1</span> 24 <li>Added an errormessage to Admin' s Backend if the template file could not be found.</li> 25 </ul> 20 26 21 27 <ul> -
wp-seo-tags/trunk/wp-seo-tags.php
r381388 r383262 4 4 Plugin URI: http://www.saquery.com/wordpress/wp-seo-tags 5 5 Description: WP SEO Tags 6 Version: 2.2.5 6 Version: 2.2.5.1 7 7 Author: Stephan Ahlf 8 8 Author URI: http://saquery.com … … 188 188 return __($txt,'wp-seo-tags'); 189 189 } 190 191 function saq_wpseotags_get_template_folder(){ 192 $url = get_bloginfo("template_url"); 193 $temp = explode("wp-content/themes/",$url); 194 $active_theme_name = $temp[1]; // The second value will be the theme name 195 return str_replace("\\", "/", get_theme_root()."/".$active_theme_name) ; 196 } 197 190 198 function saq_wpseotags_adminoptions1(){ 191 199 global $wpdb; 200 $templatePath = saq_wpseotags_get_template_folder()."/"; 201 $templateFile = "wp-seo-tags-template.php"; 202 $fn = $templatePath.$templateFile; 203 204 if (!is_file($fn)){ 205 ?> 206 <div class="error"><strong>WP SEO TAGS - ERROR! <br /><br />The file "<?php echo $fn; ?>" could not be found.</strong> <br /> 207 Please upload a copy of this file to your server.</div> 208 <?php 209 } 192 210 193 211
Note: See TracChangeset
for help on using the changeset viewer.