* [PATCH] Fix for bug #12050
@ 2019-05-24 13:43 Bernhard Bitsch
0 siblings, 0 replies; only message in thread
From: Bernhard Bitsch @ 2019-05-24 13:43 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]
Save fixed leases to file after addition of a new lease
Signed-off-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
---
html/cgi-bin/dhcp.cgi | 3 +++
1 file changed, 3 insertions(+)
diff --git a/html/cgi-bin/dhcp.cgi b/html/cgi-bin/dhcp.cgi
index 675d80012..19c55eb6d 100644
--- a/html/cgi-bin/dhcp.cgi
+++ b/html/cgi-bin/dhcp.cgi
@@ -443,6 +443,9 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2') {
$dhcpsettings{'FIX_ROOTPATH'} = &Header::cleanhtml($dhcpsettings{'FIX_ROOTPATH'});
if ($dhcpsettings{'KEY2'} eq '') { #add or edit ?
unshift (@current2, "$dhcpsettings{'FIX_MAC'},$dhcpsettings{'FIX_ADDR'},$dhcpsettings{'FIX_ENABLED'},$dhcpsettings{'FIX_NEXTADDR'},$dhcpsettings{'FIX_FILENAME'},$dhcpsettings{'FIX_ROOTPATH'},$dhcpsettings{'FIX_REMARK'}\n");
+ open(FILE, ">$filename2") or die 'Unable to open fixed lease file.';
+ print FILE @current2;
+ close(FILE);
&General::log($Lang::tr{'fixed ip lease added'});
# Enter edit mode
--
2.21.0.windows.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-05-24 13:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-24 13:43 [PATCH] Fix for bug #12050 Bernhard Bitsch
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox