summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_firmware_settings.php
diff options
context:
space:
mode:
authorN0YB <Al_Stu@Frontier.com>2014-07-18 21:01:31 -0700
committerN0YB <Al_Stu@Frontier.com>2014-07-18 21:01:31 -0700
commitde467f0038808947beaf6776265b42aa96efa642 (patch)
treee22797fcf85a5beb1c659bdf22eb02497cec33f7 /usr/local/www/system_firmware_settings.php
parentdd030de935c500d9c3698969b985fbf068ab6ef8 (diff)
downloadpfsense-de467f0038808947beaf6776265b42aa96efa642.zip
pfsense-de467f0038808947beaf6776265b42aa96efa642.tar.gz
System: Firmware: Settings
Updater Settings Tab system_firmware_settings.php Line 488, Column 43: value of attribute "type" cannot be "input"; must be one of "text", "password", "checkbox", "radio", "submit", "reset", "file", "hidden", "image", "button" <input name="repositoryurl" type="input" class="formfld url" id="repositoryurl"… Line 494, Column 36: value of attribute "type" cannot be "input"; must be one of "text", "password", "checkbox", "radio", "submit", "reset", "file", "hidden", "image", "button" <input name="branch" type="input" class="formfld unknown" id="branch" size="…
Diffstat (limited to 'usr/local/www/system_firmware_settings.php')
-rw-r--r--usr/local/www/system_firmware_settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/system_firmware_settings.php b/usr/local/www/system_firmware_settings.php
index 827bf66..c79d959 100644
--- a/usr/local/www/system_firmware_settings.php
+++ b/usr/local/www/system_firmware_settings.php
@@ -216,7 +216,7 @@ function enable_altfirmwareurl(enable_over) {
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Repository URL"); ?></td>
<td width="78%" class="vtable">
- <input name="repositoryurl" type="input" class="formfld url" id="repositoryurl" size="64" value="<?php if ($gitcfg['repositoryurl']) echo $gitcfg['repositoryurl']; ?>" />
+ <input name="repositoryurl" type="text" class="formfld url" id="repositoryurl" size="64" value="<?php if ($gitcfg['repositoryurl']) echo $gitcfg['repositoryurl']; ?>" />
<?php if($lastrepositoryurl): ?>
<br />
<?=sprintf(gettext("The most recently used repository was %s"), $lastrepositoryurl); ?>
@@ -242,7 +242,7 @@ function enable_altfirmwareurl(enable_over) {
<tr>
<td width="22%" valign="top" class="vncell"><?=gettext("Branch name"); ?></td>
<td width="78%" class="vtable">
- <input name="branch" type="input" class="formfld unknown" id="branch" size="64" value="<?php if ($gitcfg['branch']) echo $gitcfg['branch']; ?>" />
+ <input name="branch" type="text" class="formfld unknown" id="branch" size="64" value="<?php if ($gitcfg['branch']) echo $gitcfg['branch']; ?>" />
<?php if($lastbranch): ?>
<br />
<?=sprintf(gettext("The most recently used branch was %s"), $lastbranch); ?>
OpenPOWER on IntegriCloud