Skip to content

Commit

Permalink
Merge pull request from GHSA-p4ch-7hjw-6m87
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWitness committed Apr 9, 2024
1 parent 624673f commit 86d614c
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions lib/html.php
Expand Up @@ -1658,19 +1658,23 @@ function DrawMatrixHeaderItem($matrix_name, $matrix_text_color, $column_span = 1
<?php
}

function form_area($text) { ?>
function form_area($text) {
?>
<tr>
<td class='textArea'>
<?php print $text;?>
<?php print html_escape($text);?>
</td>
</tr>
<?php }
<?php
}

/* is_console_page - determines if current passed url is considered to be
a console page
@arg url - url to be checked
@returns true if console page, false if not
*/
/**
* is_console_page - determines if current passed url is considered to be a console page
*
* @param url - url to be checked
*
* @return true if console page, false if not
*/
function is_console_page($url) {
global $menu;

Expand Down

0 comments on commit 86d614c

Please sign in to comment.