Compare commits

...

3 Commits
3.0.5 ... 3.0.7

Author SHA1 Message Date
136e85dd14 install bugfix 2024-08-09 18:00:56 -04:00
2fc3338d0f poll bugfix 2024-08-09 17:58:30 -04:00
aba39575fa updates 2024-08-09 17:20:00 -04:00
3 changed files with 29 additions and 27 deletions

View File

@ -1,17 +1,3 @@
closeNow
listSitePolls
<?php <?php
/** /**
* app/plugins/feedback/models/feedback.php * app/plugins/feedback/models/feedback.php
@ -87,3 +73,16 @@ class Feedback extends DatabaseModel {
return self::$db->lastId(); return self::$db->lastId();
} }
} }
// closeNow
// listSitePolls

18
composer.lock generated
View File

@ -60,11 +60,11 @@
}, },
{ {
"name": "thetempusproject/bedrock", "name": "thetempusproject/bedrock",
"version": "1.0.3", "version": "1.0.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://git.thetempusproject.com/the-tempus-project/bedrock", "url": "https://git.thetempusproject.com/the-tempus-project/bedrock",
"reference": "f80f7bed6bb6c399ce8ea2426ebe1e118cc30a9c" "reference": "79f21773c66a4b87e6a172cab3da23029c2441fd"
}, },
"require": { "require": {
"php": ">=8.1.0", "php": ">=8.1.0",
@ -101,15 +101,15 @@
"framework", "framework",
"mvc" "mvc"
], ],
"time": "2024-08-09T05:35:47+00:00" "time": "2024-08-09T21:18:24+00:00"
}, },
{ {
"name": "thetempusproject/canary", "name": "thetempusproject/canary",
"version": "1.0.2", "version": "1.0.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://git.thetempusproject.com/the-tempus-project/canary", "url": "https://git.thetempusproject.com/the-tempus-project/canary",
"reference": "8dff31b4eefa3efeb9f81d2e6b6ef3e9f8c9f27b" "reference": "289f35cf6b0bcacc4eaba056a11906426c6068fa"
}, },
"require": { "require": {
"php": ">=8.1.0" "php": ">=8.1.0"
@ -144,7 +144,7 @@
"thetempusproject", "thetempusproject",
"tools" "tools"
], ],
"time": "2024-08-09T06:18:45+00:00" "time": "2024-08-09T21:13:37+00:00"
}, },
{ {
"name": "thetempusproject/hermes", "name": "thetempusproject/hermes",
@ -191,11 +191,11 @@
}, },
{ {
"name": "thetempusproject/houdini", "name": "thetempusproject/houdini",
"version": "1.0.4", "version": "1.0.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://git.thetempusproject.com/the-tempus-project/houdini", "url": "https://git.thetempusproject.com/the-tempus-project/houdini",
"reference": "34babdb2dc508450d14a0764bf81b032a6861a58" "reference": "cbaba96d5ee2a3038b8c8b3e34c4b834de03b8f5"
}, },
"require": { "require": {
"php": ">=8.1.0", "php": ">=8.1.0",
@ -231,7 +231,7 @@
"thetempusproject", "thetempusproject",
"tools" "tools"
], ],
"time": "2024-08-09T06:20:26+00:00" "time": "2024-08-09T21:16:21+00:00"
}, },
{ {
"name": "twbs/bootstrap", "name": "twbs/bootstrap",

View File

@ -207,6 +207,9 @@ class Install extends Controller {
], ],
], ],
'database' => [ 'database' => [
'dbEnabled' => [
'value' => true,
],
'dbHost' => [ 'dbHost' => [
'value' => Input::postNull( 'dbHost' ), 'value' => Input::postNull( 'dbHost' ),
], ],
@ -254,7 +257,7 @@ class Install extends Controller {
// Apache should have the htaccess now, and Nginx should have been configured this way out of the box // Apache should have the htaccess now, and Nginx should have been configured this way out of the box
if ( Route::testRouting() ) { if ( Route::testRouting() ) {
Session::flash( 'success', 'Routing is working as expected.' ); Session::flash( 'success', 'Routing is working as expected.' );
$this->nextStep( 'models', true ); return $this->nextStep( 'models', true );
} else { } else {
Issues::add( 'error', 'Could not verify url routing' ); Issues::add( 'error', 'Could not verify url routing' );
} }
@ -291,7 +294,7 @@ class Install extends Controller {
Issues::add( 'error', [ 'There was an error with the Installation.' => $this->installer->getErrors() ] ); Issues::add( 'error', [ 'There was an error with the Installation.' => $this->installer->getErrors() ] );
} else { } else {
Session::flash( 'success', [ 'Models Have been installed successfully.' => $this->installer->getErrors() ] ); Session::flash( 'success', [ 'Models Have been installed successfully.' => $this->installer->getErrors() ] );
$this->nextStep( 'plugins', true ); return $this->nextStep( 'plugins', true );
} }
} elseif ( Input::exists( 'submit' ) ) { } elseif ( Input::exists( 'submit' ) ) {
Issues::add( 'error', [ 'There was an error with your form.' => Check::userErrors() ] ); Issues::add( 'error', [ 'There was an error with your form.' => Check::userErrors() ] );
@ -326,7 +329,7 @@ class Install extends Controller {
Issues::add( 'error', ['There was an error with the Installation.' => $this->installer->getErrors()] ); Issues::add( 'error', ['There was an error with the Installation.' => $this->installer->getErrors()] );
} else { } else {
Session::flash( 'success', [ 'Plugins Have been installed successfully.' => $this->installer->getErrors() ] ); Session::flash( 'success', [ 'Plugins Have been installed successfully.' => $this->installer->getErrors() ] );
$this->nextStep( 'resources', true ); return $this->nextStep( 'resources', true );
} }
} elseif ( Input::exists( 'submit' ) ) { } elseif ( Input::exists( 'submit' ) ) {
Issues::add( 'error', ['There was an error with your form.' => Check::userErrors()] ); Issues::add( 'error', ['There was an error with your form.' => Check::userErrors()] );
@ -361,7 +364,7 @@ class Install extends Controller {
Issues::add( 'error', ['There was an error with the Installation.' => $this->installer->getErrors()] ); Issues::add( 'error', ['There was an error with the Installation.' => $this->installer->getErrors()] );
} else { } else {
Session::flash( 'success', ['Resources have been installed successfully.' => $this->installer->getErrors()] ); Session::flash( 'success', ['Resources have been installed successfully.' => $this->installer->getErrors()] );
$this->nextStep( 'user', true ); return $this->nextStep( 'user', true );
} }
} elseif ( Input::exists( 'submit' ) ) { } elseif ( Input::exists( 'submit' ) ) {
Issues::add( 'error', ['There was an error with your form.' => Check::userErrors()] ); Issues::add( 'error', ['There was an error with your form.' => Check::userErrors()] );