WP Show IDs ( simple, yet elegant ) - Version 1.2.1

Version Description

  • Routine maintenance. No signifigant changes.
Download this release

Release Info

Developer PriMoThemes
Plugin Icon wp plugin WP Show IDs ( simple, yet elegant )
Version 1.2.1
Comparing to
See all releases

Code changes from version 1.2 to 1.2.1

Files changed (3) hide show
  1. includes/syscon.inc.php +3 -1
  2. readme.txt +5 -2
  3. wp-show-ids.php +3 -3
includes/syscon.inc.php CHANGED
@@ -16,7 +16,9 @@ if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
16
  /*
17
  Determine the full URL to the directory this plugin resides in.
18
  */
19
- $GLOBALS["WS_PLUGIN__"]["wp_show_ids"]["c"]["dir_url"] = content_url () . preg_replace ("/^(.*?)(\/" . preg_quote (basename (WP_CONTENT_DIR), "/") . ")/", "", preg_replace ("/" . preg_quote (DIRECTORY_SEPARATOR, "/") . "/", "/", dirname (dirname (__FILE__))));
 
 
20
  /*
21
  Configure checksum time for the syscon.inc.php file.
22
  */
16
  /*
17
  Determine the full URL to the directory this plugin resides in.
18
  */
19
+ $GLOBALS["WS_PLUGIN__"]["wp_show_ids"]["c"]["dir_url"] = (stripos (__FILE__, WP_CONTENT_DIR) !== 0) ? /* Have to assume plugins dir? */
20
+ plugins_url ("/" . basename (dirname (dirname (__FILE__)))) : /* Otherwise, this gives it a chance to live anywhere in the content dir. */
21
+ content_url (preg_replace ("/^(.*?)\/" . preg_quote (basename (WP_CONTENT_DIR), "/") . "/", "", str_replace (DIRECTORY_SEPARATOR, "/", dirname (dirname (__FILE__)))));
22
  /*
23
  Configure checksum time for the syscon.inc.php file.
24
  */
readme.txt CHANGED
@@ -1,7 +1,7 @@
1
  === WP Show IDs ( simple, yet elegant ) ===
2
 
3
- Version: 1.2
4
- Stable tag: 1.2
5
  Framework: WS-LP-3.5
6
 
7
  WordPress Compatible: yes
@@ -55,6 +55,9 @@ Yes, this plugin supports WordPress® 3.0+; even Custom Post Types & Custom
55
 
56
  == Changelog ==
57
 
 
 
 
58
  = 1.2 =
59
  * Framework updated; general cleanup.
60
  * Updated with static class methods. This plugin now uses PHP's SPL autoload functionality to further optimize all of its routines.
1
  === WP Show IDs ( simple, yet elegant ) ===
2
 
3
+ Version: 1.2.1
4
+ Stable tag: 1.2.1
5
  Framework: WS-LP-3.5
6
 
7
  WordPress Compatible: yes
55
 
56
  == Changelog ==
57
 
58
+ = 1.2.1 =
59
+ * Routine maintenance. No signifigant changes.
60
+
61
  = 1.2 =
62
  * Framework updated; general cleanup.
63
  * Updated with static class methods. This plugin now uses PHP's SPL autoload functionality to further optimize all of its routines.
wp-show-ids.php CHANGED
@@ -9,8 +9,8 @@ along with this software. In the main directory, see: /licensing/
9
  If not, see: <http://www.gnu.org/licenses/>.
10
  */
11
  /*
12
- Version: 1.2
13
- Stable tag: 1.2
14
  Framework: WS-LP-3.5
15
 
16
  WordPress Compatible: yes
@@ -42,7 +42,7 @@ if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
42
  /*
43
  Define versions.
44
  */
45
- define ("WS_PLUGIN__WP_SHOW_IDS_VERSION", "1.2");
46
  define ("WS_PLUGIN__WP_SHOW_IDS_MIN_PHP_VERSION", "5.2");
47
  define ("WS_PLUGIN__WP_SHOW_IDS_MIN_WP_VERSION", "3.0");
48
  /*
9
  If not, see: <http://www.gnu.org/licenses/>.
10
  */
11
  /*
12
+ Version: 1.2.1
13
+ Stable tag: 1.2.1
14
  Framework: WS-LP-3.5
15
 
16
  WordPress Compatible: yes
42
  /*
43
  Define versions.
44
  */
45
+ define ("WS_PLUGIN__WP_SHOW_IDS_VERSION", "1.2.1");
46
  define ("WS_PLUGIN__WP_SHOW_IDS_MIN_PHP_VERSION", "5.2");
47
  define ("WS_PLUGIN__WP_SHOW_IDS_MIN_WP_VERSION", "3.0");
48
  /*