aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--themes/default/error.twig3
-rw-r--r--wallabag_compatibility_test.php2
2 files changed, 4 insertions, 1 deletions
diff --git a/themes/default/error.twig b/themes/default/error.twig
index 8a6a4d6c..528a0985 100644
--- a/themes/default/error.twig
+++ b/themes/default/error.twig
@@ -8,4 +8,7 @@
8 {% endfor %} 8 {% endfor %}
9 </ol> 9 </ol>
10 <p>Don't forget <a href="http://doc.wallabag.org/">the documentation</a>.</p> 10 <p>Don't forget <a href="http://doc.wallabag.org/">the documentation</a>.</p>
11 <p>
12 {% trans "You can <a href='wallabag_compatibility_test.php'>check your configuration here</a>." %}
13 </p>
11{% endblock %} 14{% endblock %}
diff --git a/wallabag_compatibility_test.php b/wallabag_compatibility_test.php
index 49c4e3b8..fd285042 100644
--- a/wallabag_compatibility_test.php
+++ b/wallabag_compatibility_test.php
@@ -1,5 +1,5 @@
1<?php 1<?php
2$app_name = 'wallabag 1.3'; 2$app_name = 'wallabag 1';
3 3
4$php_ok = (function_exists('version_compare') && version_compare(phpversion(), '5.3.3', '>=')); 4$php_ok = (function_exists('version_compare') && version_compare(phpversion(), '5.3.3', '>='));
5$pcre_ok = extension_loaded('pcre'); 5$pcre_ok = extension_loaded('pcre');