summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* HTML Compliance - System / Certicate / CAsNOYB2015-12-261-0/+2
| | | | | Close div tag Close php tag
* update comment for dpingerChris Buechler2015-12-241-3/+2
|
* Update pkg_edit.phpBBcan1772015-12-241-2/+2
| | | * Incorrect variable name in pkg_edit
* clarify text, might not apply to "NIC" (lagg, VLANs, etc.)Chris Buechler2015-12-241-1/+1
|
* Fixed #5691Stephen Beaver2015-12-241-0/+1
|
* HTML Compliance - System / Advanced / Firewall and NATNOYB2015-12-232-4/+5
| | | | | | | | | | | | | | Bad value 200000↩ for attribute placeholder on element input: Line feed not allowed. <input class="form-control" name="maximumtableentries" id="maximumtableentries" type="text" placeholder="200000↩"> Element ul not allowed as child of element span in this context. Contexts in which element ul may be used: Where flow content is expected. Content model for element span: Phrasing content. Close div tag Close php tag
* This broke things again. Revert "data sanitising: ip2long32, ip2ulong, ↵Chris Buechler2015-12-231-12/+5
| | | | | | long2ip32 (FIXED RESUBMIT of #2152)" This reverts commit 4557e3fba627c91c37afba04681cdabf71eccf57.
* Merge branch 'master' of git.pfmechanics.com:pfsense/pfsenseJeremy Porter2015-12-231-30/+26
|\
| * Added support for <width> on inouts and aliases.Stephen Beaver2015-12-231-30/+26
| |
* | fix part of #5604Jeremy Porter2015-12-231-1/+1
|/
* Add title to add row buttoneStephen Beaver2015-12-231-1/+1
|
* Fixed #5668Stephen Beaver2015-12-231-1/+0
|
* Add pkg key fingerprint for packages from beta.pfsense.orgRenato Botelho2015-12-232-0/+2
|
* data sanitising: ip2long32, ip2ulong, long2ip32 (FIXED RESUBMIT of #2152)stilez2015-12-231-5/+12
| | | | | | | | | | | | | | | | Self explanatory. If these functions find themselves trying to convert non-int data (or an x64 int with non-zeros in any bits >32) to dotted IPv4, or non-dotted IPv4 to integer IPv4 values, something's wrong and they shouldn't return a value that looks like they succeeded. The original PR caused issues with VPN. This was because, to check the presence of any bits beyond #32 were zero (if INT was 64 bits or larger), the operator >>32 was used. Unfortunately this was undefined on x32 platforms. (See https://forum.pfsense.org/index.php?topic=104175 ). The fix below was tested on x32, on the same thread. TEST PR'ed IN #2152 (FAILS ON x32): return ((is_int($ip) && ($ip >> 32) == 0) ? long2ip($ip & 0xFFFFFFFF) : ''); TEST NOW USED (SEEMS RELIABLE ON ALL SYSTEM INT SIZES): return ((is_int($ip) && ($ip & ~0xFFFFFFFF) == 0) ? long2ip($ip & 0xFFFFFFFF) : ''); Other than this line and a comment, this code is identical to PR #2152
* Take this conditional out, it wasn't enough, and we have a script example ↵jim-p2015-12-231-3/+0
| | | | for how to handle this properly now while respecting CSRF
* Merge pull request #2319 from ↵Stephen Beaver2015-12-231-0/+2
|\ | | | | | | NOYB/HTML_Compliance_-_System_/_Advanced_/_Admin_Access
| * HTML Compliance - System / Advanced / Admin AccessNOYB2015-12-231-0/+2
| | | | | | | | | | Close div tag Close php tag
* | Merge pull request #2318 from phil-davis/patch-2Stephen Beaver2015-12-231-1/+6
|\ \
| * | LAGG edit fixesPhil Davis2015-12-231-1/+6
| |/ | | | | | | | | | | | | 1) $_POST['members'] is an array, but $pconfig['members'] should be a comma-separated list. So the general copy "$pconfig = $_POST;" needs to be followed by setting up 'members' in particular. 2) $members_array is never used - so throw it away. 3) Add code so that input errors are actually displayed to the user. Forum thread: https://forum.pfsense.org/index.php?topic=104352.0
* | Bug #5527 wizard breadcrumb Conceptheper2015-12-231-10/+10
| |
* | Bug #5527 wizard breadcrumb Conceptheper2015-12-231-10/+10
| |
* | Bug #5527 wizard breadcrumb Conceptheper2015-12-231-26/+26
| |
* | Bug #5527 wizard breadcrumb Conceptheper2015-12-231-1/+1
| |
* | Bug #5527 wizard breadcrumb Concept heper2015-12-231-2/+2
| | | | | | | | This would require some minor adjustments to the wizards xml , for it to make sense everywhere.
* | Return complete path for dpinger PID filename, it should fix #5686Renato Botelho2015-12-231-1/+1
| |
* | Be less specific with dpinger PID filename regex, old version was not ↵Renato Botelho2015-12-231-1/+1
|/ | | | matching IPv6 addresses, with or without %ifname in case of ll
* Add trash can icon to rowhelper delete buttonsStephen Beaver2015-12-221-1/+3
|
* Remove name collision in $width attributeStephen Beaver2015-12-221-3/+3
|
* Accommodate <width> XML tag in rowhelper input fieldsStephen Beaver2015-12-221-2/+9
|
* Move width:auto style to textarea handler in pkg_edit.phpStephen Beaver2015-12-222-4/+4
|
* Merge pull request #2316 from phil-davis/patch-3Stephen Beaver2015-12-221-2/+9
|\
| * HTML Compliance - Form Select 3rd tryPhil Davis2015-12-221-2/+9
| | | | | | | | | | This is a combined version of: https://github.com/pfsense/pfsense/pull/2310 https://github.com/pfsense/pfsense/pull/2315
* | Merge pull request #2295 from NOYB/HTML_Compliance_-_Form_Input_-_PlaceholderStephen Beaver2015-12-221-1/+3
|\ \
| * | HTML Compliance - Form Input - PlaceholderNOYB2015-12-181-1/+3
| | | | | | | | | | | | | | | Attribute placeholder not allowed on element select at this point. Attribute placeholder is only allowed when the input type is email, number, password, search, tel, text, or url.
* | | Merge pull request #2311 from heper/patch-1Stephen Beaver2015-12-226-10/+9
|\ \ \
| * | | Bug #5527heper2015-12-211-2/+1
| | | |
| * | | Bug #5527heper2015-12-211-2/+2
| | | |
| * | | Update system_gateway_groups_edit.phpheper2015-12-211-1/+1
| | | |
| * | | Bug #5527heper2015-12-211-1/+1
| | | |
| * | | Bug #5527heper2015-12-211-2/+2
| | | |
| * | | Bug #5527heper2015-12-211-2/+2
| | | |
| * | | bug #5527heper2015-12-211-2/+2
| | | |
* | | | Adds support for <width> XML tag in rowhelper selectsStephen Beaver2015-12-221-29/+30
| |_|/ |/| |
* | | Default textarea width to 60 cols.Stephen Beaver2015-12-221-0/+1
| | | | | | | | | | | | Use setCols() to override
* | | Adds style="width: auto;" attribute to textareas to allow the "cols" ↵Stephen Beaver2015-12-221-0/+1
| | | | | | | | | | | | attribute to take effect. Required bu pkg_edit.php and by wizards
* | | Reverts change to Form_Selector which was breaking selectors with blank optionsStephen Beaver2015-12-222-4/+1
| | |
* | | Modify CSS to allow caller to specify widthStephen Beaver2015-12-211-1/+3
|/ /
* | Added support for rows, cols and wrap to Forms_Textarea and to pkg_edit.phpStephen Beaver2015-12-213-17/+48
| |
* | Fix help text on delete row when selector is used in a PHP tableStephen Beaver2015-12-211-1/+1
| |
* | Test for #5676Stephen Beaver2015-12-211-2/+11
| |
OpenPOWER on IntegriCloud