summaryrefslogtreecommitdiffstats
path: root/frontend/install/classes/class.DisplayCheck.php
diff options
context:
space:
mode:
authorAnton Luka Šijanec <anton@sijanec.eu>2024-05-27 13:08:29 +0200
committerAnton Luka Šijanec <anton@sijanec.eu>2024-05-27 13:08:29 +0200
commit75160b12821f7f4299cce7f0b69c83c1502ae071 (patch)
tree27e25e4ccaef45f0c58b22831164050d1af1d4db /frontend/install/classes/class.DisplayCheck.php
parentprvi-commit (diff)
download1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar
1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.gz
1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.bz2
1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.lz
1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.xz
1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.tar.zst
1ka-75160b12821f7f4299cce7f0b69c83c1502ae071.zip
Diffstat (limited to 'frontend/install/classes/class.DisplayCheck.php')
-rw-r--r--frontend/install/classes/class.DisplayCheck.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/install/classes/class.DisplayCheck.php b/frontend/install/classes/class.DisplayCheck.php
index 81d7fc7..70c8be2 100644
--- a/frontend/install/classes/class.DisplayCheck.php
+++ b/frontend/install/classes/class.DisplayCheck.php
@@ -128,7 +128,7 @@ class DisplayCheck{
echo '<div class="bottom_buttons">';
echo ' <a href="index.php?step=welcome"><input name="back" value="'.$lang['back'].'" type="button"></a>';
if(!$red_error)
- echo ' <a href="index.php?step=settings"><input type="button" value="'.$lang['next1'].'"></a>';
+ echo ' <a href="index.php?step=database"><input type="button" value="'.$lang['next1'].'"></a>';
else
echo ' <a href="index.php?step=check"><input type="button" value="Ponovno preveri"></a>';
echo '</div>';
@@ -171,7 +171,7 @@ class DisplayCheck{
$result['version']['value'] = $php_version;
// Zahtevan je php 7 ali 8.0
- if(substr($php_version, 0, 1) != '7' && substr($php_version, 0, 3) != '8.0'){
+ if(substr($php_version, 0, 1) != '7' && substr($php_version, 0, 3) != '8.0' && substr($php_version, 0, 3) != '8.1'){
$result['version']['error'] = 2;
}