Version Description
- Fixed an issue where single quotes were being escaped on custom HTML pages. They will now be unquoted when printed to the screen
Download this release
Release Info
Developer | jkmassel |
Plugin | underConstruction |
Version | 1.05 |
Comparing to | |
See all releases |
Code changes from version 1.04 to 1.05
- readme.txt +20 -4
- underConstruction.php +1 -1
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== underConstruction ===
|
2 |
Contributors: Jeremy Massel
|
3 |
-
Donate link: http://
|
4 |
Tags: construction, under construction, private, preview, security, coming soon
|
5 |
Requires at least: 2.7
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 1.
|
8 |
|
9 |
Creates a 'Coming Soon' page that will show for all users who are not logged in
|
10 |
|
@@ -13,6 +13,10 @@ Creates a 'Coming Soon' page that will show for all users who are not logged in
|
|
13 |
Creates a 'Coming Soon' page that will show for all users who are not logged in. Useful for developing a site on a live server, without the world being able to see it
|
14 |
|
15 |
|
|
|
|
|
|
|
|
|
16 |
== Installation ==
|
17 |
|
18 |
1. Upload the folder to the `/wp-content/plugins/` directory
|
@@ -21,6 +25,12 @@ Creates a 'Coming Soon' page that will show for all users who are not logged in.
|
|
21 |
|
22 |
== Frequently Asked Questions ==
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
= What kind of HTML can I put in? =
|
25 |
You enter the contents of the entire HTML file. You can include inline styles, or links to external style sheets and external images.
|
26 |
|
@@ -38,8 +48,11 @@ Sorry, I get a lot of questions. But visit the homepage for this plugin and leav
|
|
38 |
|
39 |
== Changelog ==
|
40 |
|
|
|
|
|
|
|
41 |
= 1.04 =
|
42 |
-
* Made UC a bit more of a 'good citizen' in terms of storing
|
43 |
* Fixed a bug where the custom text fields might say "empty" by default
|
44 |
* Ensured compatibility with 3.0-alpha
|
45 |
* Added a warning message if javascript is disabled in the management screen.
|
@@ -61,6 +74,9 @@ Sorry, I get a lot of questions. But visit the homepage for this plugin and leav
|
|
61 |
|
62 |
== Upgrade Notice ==
|
63 |
|
|
|
|
|
|
|
64 |
= 1.04 =
|
65 |
* Fixed a bug where options may not be deleted after deleting plugin.
|
66 |
* Improved options storage.
|
1 |
=== underConstruction ===
|
2 |
Contributors: Jeremy Massel
|
3 |
+
Donate link: http://masseltech.com/donate/
|
4 |
Tags: construction, under construction, private, preview, security, coming soon
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 3.1
|
7 |
+
Stable tag: 1.05
|
8 |
|
9 |
Creates a 'Coming Soon' page that will show for all users who are not logged in
|
10 |
|
13 |
Creates a 'Coming Soon' page that will show for all users who are not logged in. Useful for developing a site on a live server, without the world being able to see it
|
14 |
|
15 |
|
16 |
+
*Shameless plug*
|
17 |
+
Try my new App on the Mac App Store. It's great for testing Web Services, AJAX calls, or any time you just need a simple way to make a POST request!
|
18 |
+
http://itunes.apple.com/us/app/rest-tester/id424466236?mt=12&ls=1
|
19 |
+
|
20 |
== Installation ==
|
21 |
|
22 |
1. Upload the folder to the `/wp-content/plugins/` directory
|
25 |
|
26 |
== Frequently Asked Questions ==
|
27 |
|
28 |
+
= I'm finished with it, and disabled the plugin, but the "under construction" message is still showing up! =
|
29 |
+
If you've disabled the plugin, it won't show anything anymore. To be extra super-sure, try deleting the plugin files. Usually, though, the issue is that you're seeing a cached version of the page. Try force-refreshing your browser, and then try clearing your cache on the server and force refreshing again.
|
30 |
+
|
31 |
+
= I can't see the under construction page! =
|
32 |
+
As long as you're logged in, you won't be able to see it. That's a feature! This way, while you're logged in you can work as usual. To preview what it looks like, either a) log out, or b) try viewing it in another browser
|
33 |
+
|
34 |
= What kind of HTML can I put in? =
|
35 |
You enter the contents of the entire HTML file. You can include inline styles, or links to external style sheets and external images.
|
36 |
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 1.05 =
|
52 |
+
* Fixed an issue where single quotes were being escaped on custom HTML pages. They will now be unquoted when printed to the screen
|
53 |
+
|
54 |
= 1.04 =
|
55 |
+
* Made UC a bit more of a 'good citizen' in terms of storing its options. No options will be left behind when deleting the plugin now, and when deactivating, all options are compressed to one archive record. If reactivating the plugin, the options will be returned to how they were before deactivation.
|
56 |
* Fixed a bug where the custom text fields might say "empty" by default
|
57 |
* Ensured compatibility with 3.0-alpha
|
58 |
* Added a warning message if javascript is disabled in the management screen.
|
74 |
|
75 |
== Upgrade Notice ==
|
76 |
|
77 |
+
= 1.05 =
|
78 |
+
* Fixed an issue where single quotes were being escaped on custom HTML pages. They will now be unquoted when printed to the screen
|
79 |
+
|
80 |
= 1.04 =
|
81 |
* Fixed a bug where options may not be deleted after deleting plugin.
|
82 |
* Improved options storage.
|
underConstruction.php
CHANGED
@@ -102,7 +102,7 @@ class underConstruction
|
|
102 |
|
103 |
if ($this->displayStatusCodeIs(2)) //they want custom HTML!
|
104 |
{
|
105 |
-
echo html_entity_decode($this->getCustomHTML());
|
106 |
die();
|
107 |
}
|
108 |
}
|
102 |
|
103 |
if ($this->displayStatusCodeIs(2)) //they want custom HTML!
|
104 |
{
|
105 |
+
echo html_entity_decode($this->getCustomHTML(), ENT_QUOTES);
|
106 |
die();
|
107 |
}
|
108 |
}
|