lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 9df630a4f6e90de9b33763e41a964034971798e0
parent 0c1950923f5180e14f4a37dd67924e119de60b62
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date:   Mon, 31 Oct 2016 09:41:48 +0200

Merge pull request #3416 from miska/lxc

luci-app-lxc: Minor polishing
Diffstat:
Mutils/luci-app-lxc/Makefile | 4++--
Mutils/luci-app-lxc/files/view/lxc.htm | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/utils/luci-app-lxc/Makefile b/utils/luci-app-lxc/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-lxc -PKG_RELEASE:=20160616 +PKG_RELEASE:=20161030 PKG_LICENSE:=Apache-2.0 @@ -21,7 +21,7 @@ define Package/luci-app-lxc CATEGORY:=LuCI SUBMENU:=3. Applications TITLE:=LXC management Web UI - DEPENDS:=+luci-mod-admin-full +lxc +lxc-create +liblxc +rpcd-mod-lxc + DEPENDS:=+luci-mod-admin-full +lxc +lxc-create +liblxc +rpcd-mod-lxc +getopt +xz MAINTAINER:=Petar Koretic <petar.koretic@sartura.hr> endef diff --git a/utils/luci-app-lxc/files/view/lxc.htm b/utils/luci-app-lxc/files/view/lxc.htm @@ -450,7 +450,7 @@ Author: Petar Koretic <petar.koretic@sartura.hr> { var option = document.createElement('option'); option.value = data[key]; - option.text = data[key].replace(/[_:]/, ' '); + option.text = data[key].replace(/[_:]/g, ' '); select.add(option, -1); } })