Skip to content

Commit

Permalink
scrubout localplay instance
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlan-00 committed Jan 20, 2023
1 parent c456e66 commit 9605da8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions public/templates/show_localplay_instances.inc.php
Expand Up @@ -22,9 +22,12 @@

use Ampache\Config\AmpConfig;
use Ampache\Module\Api\Ajax;
use Ampache\Module\Playback\Localplay\LocalPlay;
use Ampache\Module\Util\Ui;

?>
/** @var array $fields */
/** @var array $instances */
/** @var LocalPlay $localplay */ ?>
<?php Ui::show_box_top(T_('Show Localplay Instances'), 'box box_localplay_instances'); ?>
<table class="tabledata striped-rows">
<tr>
Expand All @@ -40,7 +43,7 @@
<td>
<?php
if ($field["type"] != "password") {
echo $instance[$key];
echo scrub_out($instance[$key]);
} else {
echo "*****";
} ?>
Expand Down

0 comments on commit 9605da8

Please sign in to comment.