From 89bbd14c2517fe21a365abc90a15f9c5481301f7 Mon Sep 17 00:00:00 2001 From: latham <latham@ispconfig3> Date: Wed, 6 Apr 2011 14:20:32 +0000 Subject: [PATCH] Missing ) caused the add client to not work. lathama --- interface/web/client/client_edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/web/client/client_edit.php b/interface/web/client/client_edit.php index 843e435b3..ddeabc47d 100644 --- a/interface/web/client/client_edit.php +++ b/interface/web/client/client_edit.php @@ -161,7 +161,7 @@ class page_action extends tform_actions { // Create the controlpaneluser for the client //Generate ssh-rsa-keys exec('ssh-keygen -t rsa -C '.$username.'-rsa-key-'.time().' -f /tmp/id_rsa -N ""'); - $app->db->query("UPDATE client SET created_at = ".time().", id_rsa = '".file_get_contents('/tmp/id_rsa')."', ssh_rsa = '".file_get_contents('/tmp/id_rsa.pub')."' WHERE client_id = ".$this->id; + $app->db->query("UPDATE client SET created_at = ".time().", id_rsa = '".file_get_contents('/tmp/id_rsa')."', ssh_rsa = '".file_get_contents('/tmp/id_rsa.pub')."' WHERE client_id = ".$this->id); exec('rm -f /tmp/id_rsa /tmp/id_rsa.pub'); // Create the controlpaneluser for the client @@ -248,4 +248,4 @@ class page_action extends tform_actions { $page = new page_action; $page->onLoad(); -?> \ No newline at end of file +?> -- GitLab