diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-12-30 16:19:52 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-12-30 16:19:52 +0000 |
| commit | 0115bc1678cafd957052cd2d256563ad3e242cc1 (patch) | |
| tree | ee020fc08dddd2714bb404a71dc0f099cd35ddaf /app | |
| parent | b48bb5e9c4e596e98b7c8c27c14b9f19abfffb26 (diff) | |
| download | webtrees-0115bc1678cafd957052cd2d256563ad3e242cc1.tar.gz webtrees-0115bc1678cafd957052cd2d256563ad3e242cc1.tar.bz2 webtrees-0115bc1678cafd957052cd2d256563ad3e242cc1.zip | |
Fix: #2075 typo
Diffstat (limited to 'app')
| -rw-r--r-- | app/Module.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Module.php b/app/Module.php index 60c11ae03c..f260e99043 100644 --- a/app/Module.php +++ b/app/Module.php @@ -439,7 +439,7 @@ class Module if ($module instanceof ModuleInterface) { $modules[$module->getName()] = $module; - $exists = DB::table('module')->where('module_name', '=' . $module->getName())->pluck('module_name')->isNotEmpty(); + $exists = DB::table('module')->where('module_name', '=', $module->getName())->pluck('module_name')->isNotEmpty(); if (!$exists) { DB::table('module')->insert([ |
