diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-18 05:20:14 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-18 05:20:14 +0000 |
commit | 628b33c1abbb90f1f5885edb8d536f71e3a59a86 (patch) | |
tree | 2602ea21c474416c64460a415dcb80e790d2652a /usr | |
parent | 5ccfea3374301378b131f238d6d7c9ba2daf0b34 (diff) | |
download | pfsense-628b33c1abbb90f1f5885edb8d536f71e3a59a86.zip pfsense-628b33c1abbb90f1f5885edb8d536f71e3a59a86.tar.gz |
Note an area that needs to be cleaned up for emedded platforms
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/pkg_edit.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/usr/local/www/pkg_edit.php b/usr/local/www/pkg_edit.php index 88cfa63..c7a83ee 100755 --- a/usr/local/www/pkg_edit.php +++ b/usr/local/www/pkg_edit.php @@ -25,6 +25,18 @@ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + <tabs> + <tab> + <text>Testing Tab</text> + <url>url to go to</url> + </tab> + <tab> + <text>Testing Tab 2</text> + <xml>filename of xml</xml> + </tab> + </tabs> + */ require("guiconfig.inc"); @@ -122,6 +134,7 @@ include("fbegin.inc"); if($fields['type'] == "rowhelper") { // save rowhelper items. for($x=0; $x<99; $x++) { // XXX: this really should be passed from the form. + // XXX: this really is not helping embedded platforms. foreach($fields['rowhelper']['rowhelperfield'] as $rowhelperfield) { if($firstfield == "") { $firstfield = $rowhelperfield['fieldname']; |