-
diff --git a/include/controls.php b/include/controls.php
index 34a4af1f2..78f02233f 100755
--- a/include/controls.php
+++ b/include/controls.php
@@ -1,6 +1,14 @@
".htmlspecialchars($value)."";
+ }
+
+ function submit_tag(string $value, $attributes = "") {
+ return button_tag($value, "submit", "class=\"alt-primary\" $attributes");
+ }
+
function select_tag(string $name, $value, array $values, string $attributes = "", string $id = "") {
$dojo_type = strpos($attributes, "dojoType") === false ? "dojoType='fox.form.Select'" : "";