summaryrefslogtreecommitdiff
path: root/app/Module.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-01-17 18:03:39 +0000
committerGreg Roach <fisharebest@gmail.com>2016-01-17 18:03:39 +0000
commitad2f0e13109a624a158c7532c312bc08f1d45af8 (patch)
tree3e13097a0c086e5d82c64ea49bd0eef7827c3440 /app/Module.php
parenta6762289f3e1aa394a2721a82ffef93958cd133f (diff)
downloadwebtrees-ad2f0e13109a624a158c7532c312bc08f1d45af8.tar.gz
webtrees-ad2f0e13109a624a158c7532c312bc08f1d45af8.tar.bz2
webtrees-ad2f0e13109a624a158c7532c312bc08f1d45af8.zip
Two spaces have no effect in HTML
Diffstat (limited to 'app/Module.php')
-rw-r--r--app/Module.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Module.php b/app/Module.php
index b5874f6678..569e08b28a 100644
--- a/app/Module.php
+++ b/app/Module.php
@@ -52,7 +52,7 @@ class Module {
throw new \Exception;
}
} catch (\Exception $ex) {
- // The module has been deleted or is broken? Disable it.
+ // The module has been deleted or is broken? Disable it.
Log::addConfigurationLog("Module {$module_name} is missing or broken - disabling it");
Database::prepare(
"UPDATE `##module` SET status = 'disabled' WHERE module_name = :module_name"
@@ -99,7 +99,7 @@ class Module {
}
}
- // The order of menus/sidebars/tabs is defined in the database. Others are sorted by name.
+ // The order of menus/sidebars/tabs is defined in the database. Others are sorted by name.
if ($component !== 'menu' && $component !== 'sidebar' && $component !== 'tab') {
uasort($array, function (AbstractModule $x, AbstractModule $y) {
return I18N::strcasecmp($x->getTitle(), $y->getTitle());
@@ -137,7 +137,7 @@ class Module {
}
}
- // The order of menus/sidebars/tabs is defined in the database. Others are sorted by name.
+ // The order of menus/sidebars/tabs is defined in the database. Others are sorted by name.
if ($component !== 'menu' && $component !== 'sidebar' && $component !== 'tab') {
uasort($array, function (AbstractModule $x, AbstractModule $y) {
return I18N::strcasecmp($x->getTitle(), $y->getTitle());
@@ -265,7 +265,7 @@ class Module {
$module instanceof ModuleSidebarInterface ? $module->defaultSidebarOrder() : null,
$module instanceof ModuleTabInterface ? $module->defaultTabOrder() : null,
));
- // Set the default privcy for this module. Note that this also sets it for the
+ // Set the default privcy for this module. Note that this also sets it for the
// default family tree, with a gedcom_id of -1
if ($module instanceof ModuleMenuInterface) {
Database::prepare(