]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
mysql or pgsql required (not mysql)
authorBrenda Wallace <shiny@cpan.org>
Tue, 23 Jun 2009 16:04:28 +0000 (04:04 +1200)
committerBrenda Wallace <shiny@cpan.org>
Wed, 15 Jul 2009 06:43:58 +0000 (18:43 +1200)
install.php

index 570b08edf473b13e709ece605656a279d89016de..4e54ba870009b5ac171506ff379bc962f95e4456 100644 (file)
@@ -48,7 +48,7 @@ function checkPrereqs()
                    $pass = false;
     }
 
-    $reqs = array('gd', 'mysql', 'curl',
+    $reqs = array('gd', 'curl',
                   'xmlwriter', 'mbstring',
                   'gettext');
 
@@ -58,6 +58,10 @@ function checkPrereqs()
                    $pass = false;
         }
     }
+    if (!checkExtension('pgsql') && !checkExtension('mysql')) {
+      ?><p class="error">Cannot mysql or pgsql extension. You need one or the other: <code><?php echo $req; ?></code></p><?php
+                    $pass = false;
+    }
 
        if (!is_writable(INSTALLDIR)) {
          ?><p class="error">Cannot write config file to: <code><?php echo INSTALLDIR; ?></code></p>