* [PATCH] pppsetup.cgi: Fix site layout when no TYPE is specified
@ 2015-10-18 12:25 Stefan Schantl
2015-10-18 17:52 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2015-10-18 12:25 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1024 bytes --]
There was an issue with false generated HTML code, in case
of an empty or unset $pppsettings{'TYPE'} variable which results
in a missplaced website footer.
This patch moves the code for closeing the table and the call of the
closebox() function to the correct place to prevent this display issue.
Fixes #10565.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
html/cgi-bin/pppsetup.cgi | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/html/cgi-bin/pppsetup.cgi b/html/cgi-bin/pppsetup.cgi
index b3e8e6c..36d0ced 100644
--- a/html/cgi-bin/pppsetup.cgi
+++ b/html/cgi-bin/pppsetup.cgi
@@ -980,12 +980,14 @@ print <<END
<td colspan='2' width='50%'>$Lang::tr{'legend'}:</td>
<td colspan='2' width='50%'><img src='/blob.gif' alt='*' /> $Lang::tr{'required field'}</td>
</tr>
-</table>
END
;
-&Header::closebox();
}
+print "</table>";
+
+&Header::closebox();
+
print "</form>\n";
&Header::closebigbox();
--
2.4.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] pppsetup.cgi: Fix site layout when no TYPE is specified
2015-10-18 12:25 [PATCH] pppsetup.cgi: Fix site layout when no TYPE is specified Stefan Schantl
@ 2015-10-18 17:52 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2015-10-18 17:52 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1161 bytes --]
Merged. Please take care of the bug report.
-Michael
On Sun, 2015-10-18 at 14:25 +0200, Stefan Schantl wrote:
> There was an issue with false generated HTML code, in case
> of an empty or unset $pppsettings{'TYPE'} variable which results
> in a missplaced website footer.
>
> This patch moves the code for closeing the table and the call of the
> closebox() function to the correct place to prevent this display
> issue.
>
> Fixes #10565.
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> html/cgi-bin/pppsetup.cgi | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/html/cgi-bin/pppsetup.cgi b/html/cgi-bin/pppsetup.cgi
> index b3e8e6c..36d0ced 100644
> --- a/html/cgi-bin/pppsetup.cgi
> +++ b/html/cgi-bin/pppsetup.cgi
> @@ -980,12 +980,14 @@ print <<END
> <td colspan='2' width='50%'>$Lang::tr{'legend'}:</td>
> <td colspan='2' width='50%'><img src='/blob.gif' alt='*'
> /> $Lang::tr{'required field'}</td>
> </tr>
> -</table>
> END
> ;
> -&Header::closebox();
> }
>
> +print "</table>";
> +
> +&Header::closebox();
> +
> print "</form>\n";
>
> &Header::closebigbox();
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-10-18 17:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-18 12:25 [PATCH] pppsetup.cgi: Fix site layout when no TYPE is specified Stefan Schantl
2015-10-18 17:52 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox