From 88ed21488cd4014c8817310ff9fc388a9b5ad953 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 5 Mar 2021 07:10:36 +0100 Subject: [PATCH] add optional paramter $target to formSubmit() --- views/bootstrap/class.Bootstrap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index cfd2a2517..87cb3849f 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -1000,14 +1000,14 @@ background-image: linear-gradient(to bottom, #882222, #111111);; return; } /* }}} */ - function formSubmit($value, $name='') { /* {{{ */ + function formSubmit($value, $name='', $target='') { /* {{{ */ echo "
\n"; if(is_string($value)) { - echo "\n"; + echo "\n"; } else { if(is_array($value)) { foreach($value as $i=>$v) - echo "\n"; + echo "\n"; } } echo "
\n";