Skip to content

Commit

Permalink
Fixed issue #19136: Undefined variable in admin global settings gener…
Browse files Browse the repository at this point in the history
…al subview (#3499)

Co-authored-by: Matthew Favetti <mpfavetti@ucdavis.edu>
  • Loading branch information
mfavetti and Matthew Favetti committed Sep 29, 2023
1 parent 3aa6c0d commit 7c83314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/admin/globalsettings/_general.php
Expand Up @@ -42,7 +42,7 @@
<div class="col-12">
<select class="form-select" name="defaulttheme" id="defaulttheme">
<?php foreach ($templatenames as $templatename) : ?>
<option value='<?php echo CHtml::encode($themeName); ?>' <?php echo ($thisdefaulttheme == $templatename) ? "selected='selected'" : "" ?> >
<option value='<?php echo CHtml::encode($templatename); ?>' <?php echo ($thisdefaulttheme == $templatename) ? "selected='selected'" : "" ?> >
<?php echo CHtml::encode($templatename); ?>
</option>
<?php endforeach; ?>
Expand Down

0 comments on commit 7c83314

Please sign in to comment.