diff options
author | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2016-03-07 21:06:55 +0100 |
---|---|---|
committer | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2016-03-07 21:06:55 +0100 |
commit | dd3d25f0dd6618bfd47e361a6425dbec51915399 (patch) | |
tree | faac0ff5df6fdb927da9f0999190dd6ad72358fc /applications/luci-app-polipo | |
parent | d26bffefb360cf3b9f0698f48f18dbac083d65a2 (diff) |
luci-app-polipo: fix Parent proxy address field check
fix Parent proxy address field check https://dev.openwrt.org/ticket/15680
Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
Diffstat (limited to 'applications/luci-app-polipo')
-rw-r--r-- | applications/luci-app-polipo/luasrc/model/cbi/polipo.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua b/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua index 967a47aa7..6031c8423 100644 --- a/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua +++ b/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua @@ -80,7 +80,7 @@ o = s:taboption("proxy", Value, "parentProxy", "will forward the requests.")) o.optional = true -o.datatype = "ipaddr" +o.datatype = "hostport" o = s:taboption("proxy", Value, "parentAuthCredentials", |