summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-04-25 22:41:45 +0100
committerGreg Roach <fisharebest@webtrees.net>2019-04-25 22:41:45 +0100
commitb2c011d7d8ff495bd3636357907da539925bd5f9 (patch)
tree5ad26f8b0013ac2bfe6b2ff9ae9e744b10f8d775 /resources
parent6c2179e2012ee7bb08bc76647556f957e4eeaa05 (diff)
downloadwebtrees-b2c011d7d8ff495bd3636357907da539925bd5f9.tar.gz
webtrees-b2c011d7d8ff495bd3636357907da539925bd5f9.tar.bz2
webtrees-b2c011d7d8ff495bd3636357907da539925bd5f9.zip
CodeStyle - single quotes
Diffstat (limited to 'resources')
-rw-r--r--resources/views/admin/locations.phtml2
-rw-r--r--resources/views/edit/reorder-media.phtml2
-rw-r--r--resources/views/lists/individuals-table.phtml2
-rw-r--r--resources/views/places-page.phtml2
4 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/admin/locations.phtml b/resources/views/admin/locations.phtml
index ee674857e9..6b1eae042f 100644
--- a/resources/views/admin/locations.phtml
+++ b/resources/views/admin/locations.phtml
@@ -57,7 +57,7 @@
<td>
<?php if (is_file(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon)) : ?>
- <img src="<?= e(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon) ?>" width="25" height="15" alt="<?= I18N::translate("Flag of %s", $place->pl_place) ?>">
+ <img src="<?= e(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon) ?>" width="25" height="15" alt="<?= I18N::translate('Flag of %s', $place->pl_place) ?>">
<?php endif ?>
</td>
diff --git a/resources/views/edit/reorder-media.phtml b/resources/views/edit/reorder-media.phtml
index 4903ee49ee..dfd49c90fb 100644
--- a/resources/views/edit/reorder-media.phtml
+++ b/resources/views/edit/reorder-media.phtml
@@ -14,7 +14,7 @@
<?= $fact->target()->fullName() ?>
</h3>
<div class="card-body">
- <?= $fact->target()->displayImage(100, 100, "contain") ?>
+ <?= $fact->target()->displayImage(100, 100, 'contain') ?>
</div>
</div>
<?php endforeach ?>
diff --git a/resources/views/lists/individuals-table.phtml b/resources/views/lists/individuals-table.phtml
index 7f8345d353..f965569adf 100644
--- a/resources/views/lists/individuals-table.phtml
+++ b/resources/views/lists/individuals-table.phtml
@@ -55,7 +55,7 @@ $("#<?= e($table_id) ?>").dataTable({
/* Filter death */ { sortable: false },
/* Filter tree */ { sortable: false }
],
- sorting: <?= json_encode($sosa ? [[4, "asc"]] : [[1, "asc"]]) ?>
+ sorting: <?= json_encode($sosa ? [[4, 'asc']] : [[1, 'asc']]) ?>
});
$("#<?= e($table_id) ?>")
diff --git a/resources/views/places-page.phtml b/resources/views/places-page.phtml
index 2648f77fe5..2e01062394 100644
--- a/resources/views/places-page.phtml
+++ b/resources/views/places-page.phtml
@@ -23,7 +23,7 @@
</h5>
<?php if ($note) : ?>
<div class="text-center small text-muted">
- <?= I18N::translate("Places without valid co-ordinates are not shown on the map and have a red border around the sidebar entry") ?>
+ <?= I18N::translate('Places without valid co-ordinates are not shown on the map and have a red border around the sidebar entry') ?>
</div>
<?php endif ?>
<?= $content ?>