Footer Putter - Version 1.2

Version Description

Fix display of telephone number

Download this release

Release Info

Developer powerblogservice
Plugin Icon 128x128 Footer Putter
Version 1.2
Comparing to
See all releases

Code changes from version 1.1 to 1.2

Files changed (6) hide show
  1. admin.php +1 -1
  2. footer-credits-admin.php +0 -4
  3. footer-credits.php +1 -1
  4. main.php +2 -2
  5. readme.txt +4 -3
  6. style.css +1 -1
admin.php CHANGED
@@ -68,7 +68,7 @@ The plugins define two widgets:
68
  <p>Your footer will look something like this:</p>
69
  <img src="{$screenshot}" alt="Screenshot of Footer Credits Widget Area" />
70
 
71
- <h2>Instructions For WPWhoosh Users</h2>
72
  <p>If you have <a href="http://www.wpwhoosh.com/">whooshed</a> this site then all you need to do is replace the sample trademarks with the real trademarks.
73
 
74
  <h2>Instructions For Other Users</h2>
68
  <p>Your footer will look something like this:</p>
69
  <img src="{$screenshot}" alt="Screenshot of Footer Credits Widget Area" />
70
 
71
+ <h2>Instructions For WP Whoosh Users</h2>
72
  <p>If you have <a href="http://www.wpwhoosh.com/">whooshed</a> this site then all you need to do is replace the sample trademarks with the real trademarks.
73
 
74
  <h2>Instructions For Other Users</h2>
footer-credits-admin.php CHANGED
@@ -64,10 +64,6 @@ class FooterCreditsAdmin {
64
  public static function get_url($id='', $noheader = false) {
65
  return admin_url('admin.php?page='.self::get_slug().(empty($id) ? '' : ('&amp;id='.$id)).(empty($noheader) ? '' : '&amp;noheader=true'));
66
  }
67
-
68
- private static function get_nonce_url($action, $id='', $noheader = false) {
69
- return WPWhooshUtils::admin_url(self::get_slug(), $action, $id, $noheader,true,'site');
70
- }
71
 
72
  public static function enable_screen($show_screen,$screen) {
73
  if ($screen->id == self::get_screen_id())
64
  public static function get_url($id='', $noheader = false) {
65
  return admin_url('admin.php?page='.self::get_slug().(empty($id) ? '' : ('&amp;id='.$id)).(empty($noheader) ? '' : '&amp;noheader=true'));
66
  }
 
 
 
 
67
 
68
  public static function enable_screen($show_screen,$screen) {
69
  if ($screen->id == self::get_screen_id())
footer-credits.php CHANGED
@@ -216,7 +216,7 @@ class FooterCredits {
216
  $clear = '<div class="clear"></div>';
217
  }
218
  $copyright = self::copyright_owner(self::get_terms());
219
- $tel = self::get_term('telephone');
220
  $address = self::get_term('address');
221
  return (empty($params['show_return']) ? '' :
222
  self::return_to_top($params['return_text'], $params['return_href'], $params['return_class'])) .
216
  $clear = '<div class="clear"></div>';
217
  }
218
  $copyright = self::copyright_owner(self::get_terms());
219
+ $telephone = self::get_term('telephone');
220
  $address = self::get_term('address');
221
  return (empty($params['show_return']) ? '' :
222
  self::return_to_top($params['return_text'], $params['return_href'], $params['return_class'])) .
main.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: Footer Putter
4
  * Plugin URI: http://www.diywebmastery.com/plugins/footer-putter/
5
  * Description: Put a footer on your site that boosts your credibility with both search engines and human visitors.
6
- * Version: 1.1
7
  * Author: Russell Jamieson
8
  * Author URI: http://www.diywebmastery.com/about/
9
  * License: GPLv2+
10
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
  */
12
- define('FOOTER_PUTTER_VERSION','1.1');
13
  define('FOOTER_PUTTER_FRIENDLY_NAME', 'Footer Putter') ;
14
  define('FOOTER_PUTTER_PLUGIN_NAME', 'footer-putter') ;
15
  define('FOOTER_PUTTER_HOME_URL','http://www.diywebmastery.com/plugins/footer-putter/');
3
  * Plugin Name: Footer Putter
4
  * Plugin URI: http://www.diywebmastery.com/plugins/footer-putter/
5
  * Description: Put a footer on your site that boosts your credibility with both search engines and human visitors.
6
+ * Version: 1.2
7
  * Author: Russell Jamieson
8
  * Author URI: http://www.diywebmastery.com/about/
9
  * License: GPLv2+
10
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
  */
12
+ define('FOOTER_PUTTER_VERSION','1.2');
13
  define('FOOTER_PUTTER_FRIENDLY_NAME', 'Footer Putter') ;
14
  define('FOOTER_PUTTER_PLUGIN_NAME', 'footer-putter') ;
15
  define('FOOTER_PUTTER_HOME_URL','http://www.diywebmastery.com/plugins/footer-putter/');
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.diywebmastery.com/donate/
4
  Tags: footer, copyright, rel=nofollow
5
  Requires at least: 3.0
6
  Tested up to: 3.5
7
- Stable tag: 1.1
8
  License: GPLv2+
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -37,13 +37,14 @@ Put a footer on your site that boosts your credibility with both search engines
37
 
38
  == Changelog ==
39
 
 
40
  = 1.1 = Fix link in admin.php from screenshot1.jpg to screenshot-1.jpg
41
  = 1.0 = Initial release
42
 
43
  == Upgrade Notice ==
44
 
45
- = 1.1 =
46
- * Mandatory - fix link to screenshot-1.jpg
47
 
48
  == Links ==
49
 
4
  Tags: footer, copyright, rel=nofollow
5
  Requires at least: 3.0
6
  Tested up to: 3.5
7
+ Stable tag: 1.2
8
  License: GPLv2+
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
37
 
38
  == Changelog ==
39
 
40
+ = 1.2 = Fix display of telephone number
41
  = 1.1 = Fix link in admin.php from screenshot1.jpg to screenshot-1.jpg
42
  = 1.0 = Initial release
43
 
44
  == Upgrade Notice ==
45
 
46
+ = 1.2 =
47
+ * Mandatory - fix display of telephone number in footer
48
 
49
  == Links ==
50
 
style.css CHANGED
@@ -13,7 +13,7 @@
13
  text-decoration: underline; }
14
  #footer-credits span.copyright, #footer-credits span.telephone, #footer-credits span.address {
15
  font-weight: normal; letter-spacing : normal; text-transform: none; margin: 0 10px; vertical-align: middle;
16
- background: inherit; border : none; }
17
  .custom-footer .white a, #footer-credits.white { color : white; }
18
  .custom-footer, .widget_footer_trademarks { text-align: center; margin: 10px 0;}
19
  .custom-footer .widget_footer_trademarks a, .widget_footer_trademarks a { margin: 10px; }
13
  text-decoration: underline; }
14
  #footer-credits span.copyright, #footer-credits span.telephone, #footer-credits span.address {
15
  font-weight: normal; letter-spacing : normal; text-transform: none; margin: 0 10px; vertical-align: middle;
16
+ background: inherit; border : none; float: none; display: inline; }
17
  .custom-footer .white a, #footer-credits.white { color : white; }
18
  .custom-footer, .widget_footer_trademarks { text-align: center; margin: 10px 0;}
19
  .custom-footer .widget_footer_trademarks a, .widget_footer_trademarks a { margin: 10px; }