From cd072acba40b59634cf43fc61681b42ebca69eaa Mon Sep 17 00:00:00 2001
From: Florian Schaal <florian@schaal-24.de>
Date: Fri, 24 Jan 2014 06:21:25 -0500
Subject: [PATCH] changed the regex; new line at the end is allowed - prevents problems when using cut&paste for the private-key in the interface
---
interface/web/remote/index.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/interface/web/remote/index.php b/interface/web/remote/index.php
index 2ce9220..369cb2a 100644
--- a/interface/web/remote/index.php
+++ b/interface/web/remote/index.php
@@ -1,8 +1,8 @@
<?php
-require_once('../../lib/config.inc.php');
+require_once '../../lib/config.inc.php';
$conf['start_session'] = false;
-require_once('../../lib/app.inc.php');
+require_once '../../lib/app.inc.php';
if($conf['demo_mode'] == true) $app->error('This function is disabled in demo mode.');
@@ -12,4 +12,4 @@
$server->setObject(new ISPConfigSoapHandler());
$server->handle();
-?>
\ No newline at end of file
+?>
--
Gitblit v1.9.1