You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -48,6 +48,12 @@ Select which color you want, set the button location, select the orientation fit
48
48
Your user probably doesn't have the right to write to the default temp folder `/tmp`. Then create a new folder and use it as temp folder in the Shariff settings, make sure that the rights are set correct.
49
49
== Changelog ==
50
50
51
+
= 1.0.9 =
52
+
* bug fixes
53
+
* font awesome now part of the package
54
+
* PHP version check
55
+
* Option to hide Shariff on article overview pages
checkbox_setting('shariff_hideonoverview','Hide on overview',false);
186
+
}
180
187
functionsetting_imageurl() {
181
188
echo'<input type="text" name="shariff_image" value="'.filter_var(get_option('shariff_image',''), FILTER_SANITIZE_STRING).'"> '.__('Used for services such as Pinterest','shariff');
182
189
}
@@ -225,6 +232,13 @@ function shariff_options_page() {
if (version_compare(phpversion(), '5.4.0') >= 0) {
237
+
echo'<br><font size="6" color="green">✔</font> '.__("You're using PHP 5.4 or greater.","shariff").'<br>';
238
+
} else {
239
+
echo'<br><font size="6" color="red">✗</font> '.__("You're using an outdated PHP version which will cause problems. Please update PHP to 5.4 or greater to have full support.").'<br>';
0 commit comments