mirror of
https://github.com/friendica/friendica
synced 2025-04-27 10:30:10 +00:00
4) Adding Factories to other entrypoints
This commit is contained in:
parent
4af0119b73
commit
1e0e1674f2
20 changed files with 100 additions and 58 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue