Typogrify patron names

This commit is contained in:
Alex Cabal 2022-12-11 13:35:52 -06:00
parent 9f87133cb9
commit 9c8d5b18e0

View file

@ -170,7 +170,7 @@ $anonymousPatronCount = Db::QueryInt('SELECT sum(cnt)
<ol class="donors patrons">
<? foreach($patronsCircle as $patron){ ?>
<li>
<p><?= Formatter::ToPlainText(str_ireplace(' and ', ' & ', $patron->SortedName)) ?></p>
<p><?= Formatter::ToPlainText(str_ireplace(['\'', ' and '], ['', ' & '], $patron->SortedName)) ?></p>
</li>
<? } ?>
<? if($anonymousPatronCount > 0){ ?>