diff options
author | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2016-03-07 21:08:42 +0100 |
---|---|---|
committer | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2016-03-07 21:08:42 +0100 |
commit | f27e367a3bbff2fbad241ff22537d9a3730e19d2 (patch) | |
tree | faac0ff5df6fdb927da9f0999190dd6ad72358fc | |
parent | d26bffefb360cf3b9f0698f48f18dbac083d65a2 (diff) | |
parent | dd3d25f0dd6618bfd47e361a6425dbec51915399 (diff) |
Merge pull request #666 from chris5560/master
luci-app-polipo: fix Parent proxy address field check
-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", |