X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fregister_functions.php;h=6ff22480a41ea2685d63716e9e68bf699af04520;hp=7e08dcbdf89638d2f19cff87944b261681240589;hb=6914ebaaae909093df86d010e4c754a43d1a1aed;hpb=5f25dbe2aab8c57f820caaf48708bef1dd56f417 diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index 7e08dcbdf8..6ff22480a4 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -126,9 +126,9 @@ function registerGenerateCategoryTable ($mode, $return=false) { // Outputs a 'failed message' function registerOutputFailedMessage ($messageId, $extra='') { if (empty($messageId)) { - outputHtml('
' . $extra . '
'); + outputHtml('
' . $extra . '
'); } else { - outputHtml('
{--' . $messageId . '--}' . $extra . '
'); + outputHtml('
{--' . $messageId . '--}' . $extra . '
'); } } @@ -142,7 +142,7 @@ function FILTER_REGISTER_MUST_FILLOUT ($content) { while ($row = SQL_FETCHARRAY($result)) { // Must the user fill out this element? $value = ''; - if ($row['field_required'] == 'Y') $value = '(*)'; + if ($row['field_required'] == 'Y') $value = '(*)'; // Add it $content['must_fillout_' . strtolower($row['field_name']) . ''] = $value;