X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ftemplate-functions.php;h=597c5be9303f8e56b1b58dbb370208e7db1fc2be;hp=aff7a024c3568b76ef1b0206dedcd605f1129095;hb=c40a41ce0bf7793d417fb7684b9f061e6fc8cf7f;hpb=3010e02e68f51325da31625a29fe940646f6ff04 diff --git a/inc/template-functions.php b/inc/template-functions.php index aff7a024c3..597c5be930 100644 --- a/inc/template-functions.php +++ b/inc/template-functions.php @@ -1231,7 +1231,9 @@ function handleCodeMessage () { $ext = 'unknown'; // Is extension given? - if (isGetRequestParameterSet('ext')) $ext = getRequestParameter('ext'); + if (isGetRequestParameterSet('ext')) { + $ext = getRequestParameter('ext'); + } // END - if // Convert the 'code' parameter from URL to a human-readable message $message = getMessageFromErrorCode(getRequestParameter('code')); @@ -1341,7 +1343,7 @@ function linenumberCode ($code) { if ($count_lines == 1) { $r .= 1; } else { - $r .= ($line == ($count_lines - 1)) ? '' : ($line+1); + $r .= ($line == ($count_lines - 1)) ? '' : ($line+1); } $r .= '|';