]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Installer.php
Merge pull request #6601 from annando/false-notifications
[friendica.git] / src / Core / Installer.php
index a487aec78b34ee24053c53c58d2b6e46c7999f80..7e79f29f153dd6efe81efc50993c19106c916032 100644 (file)
@@ -168,12 +168,14 @@ class Installer
        /***
         * Installs the DB-Scheme for Friendica
         *
+        * @param string $basePath The base path of this application
+        *
         * @return bool true if the installation was successful, otherwise false
         * @throws Exception
         */
-       public function installDatabase()
+       public function installDatabase($basePath)
        {
-               $result = DBStructure::update(false, true, true);
+               $result = DBStructure::update($basePath, false, true, true);
 
                if ($result) {
                        $txt = L10n::t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;