Changeset 916610
- Timestamp:
- 05/18/2014 03:17:23 PM (12 years ago)
- Location:
- postal-logger/trunk
- Files:
-
- 3 edited
-
license.txt (modified) (2 diffs)
-
postal-logger.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
postal-logger/trunk/license.txt
r422655 r916610 1 1 WordPress - Web publishing software 2 2 3 Copyright 201 1by the contributors3 Copyright 2014 by the contributors 4 4 5 5 This program is free software; you can redistribute it and/or modify … … 32 32 WordPress - Web publishing software 33 33 34 Copyright 2003-201 0by the contributors34 Copyright 2003-2014 by the contributors 35 35 36 36 WordPress is released under the GPL -
postal-logger/trunk/postal-logger.php
r422655 r916610 4 4 Plugin URI: http://yourdomain.com/ 5 5 Description: Used to log postal codes of users coming to your blog. 6 Version: 1. 06 Version: 1.1 7 7 Author: Don Kukral 8 8 Author URI: http://yourdomain.com … … 10 10 */ 11 11 12 #error_reporting(E_ALL);13 #ini_set("display_errors", 1);14 12 function postal_logger_menu() { 15 13 if ($_GET['view'] == 'city') { … … 19 17 } 20 18 $log = unserialize($log); 19 if (!$log) { $log = Array(); } 21 20 asort($log); 22 21 ?> -
postal-logger/trunk/readme.txt
r621918 r916610 1 1 === Postal Logger === 2 Contributors: jboydston, dkukral , Droyal2 Contributors: jboydston, dkukral 3 3 Donate link: 4 4 Tags: geo, location, log 5 5 Requires at least: 3.0 6 Tested up to: 3. 2.17 Stable tag: 1. 06 Tested up to: 3.9.1 7 Stable tag: 1.1 8 8 9 9 Plugin for WordPress that allows you log user postal codes. … … 14 14 15 15 == License == 16 Copyright 2010 - 201 1Joe Boydston, Don Kukral16 Copyright 2010 - 2014 Joe Boydston, Don Kukral 17 17 18 18 This program is free software; you can redistribute it and/or modify … … 44 44 45 45 == Changelog == 46 = 1.1 = 47 Verified compatibility with WP 3.9.1 46 48 47 49 = 1.0 =
Note: See TracChangeset
for help on using the changeset viewer.