Skip to content
Snippets Groups Projects
Commit 0364c7d5 authored by Demian Katz's avatar Demian Katz
Browse files

Eliminated unused variable.

parent 2e4e4562
No related merge requests found
...@@ -199,7 +199,7 @@ class InstallController extends AbstractBase ...@@ -199,7 +199,7 @@ class InstallController extends AbstractBase
try { try {
// Try to read the tags table just to see if we can connect to the DB: // Try to read the tags table just to see if we can connect to the DB:
$tags = $this->getTable('Tags'); $tags = $this->getTable('Tags');
$test = $tags->getByText('test', false); $tags->getByText('test', false);
$status = true; $status = true;
} catch (\Exception $e) { } catch (\Exception $e) {
$status = false; $status = false;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment