Add variable to control whether the advisory is shown so that it can easily be toggled. Helps during testing!

This commit is contained in:
2025-10-13 15:22:07 -07:00
parent c6289be09c
commit 8f24d80e8d

View File

@@ -1,4 +1,7 @@
#!/usr/bin/php #!/usr/bin/php
<?php
$show_advisory = false;
if ($show_advisory) echo '
<div class="row"> <div class="row">
<p><!-- Gap Area --></p> <p><!-- Gap Area --></p>
</div> </div>
@@ -16,3 +19,5 @@
</div> </div>
</a> </a>
</div> </div>
';
?>