From: cajus Date: Wed, 12 Dec 2007 09:30:22 +0000 (+0000) Subject: Updated socket client indent and fixed error message X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b8aeac5a00cd8df7ac0debeb27b2d3479ddb7864;p=gosa.git Updated socket client indent and fixed error message git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8091 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_pluglist.inc b/include/class_pluglist.inc index 50e0c0f19..6fdf9b320 100644 --- a/include/class_pluglist.inc +++ b/include/class_pluglist.inc @@ -147,7 +147,7 @@ class pluglist { /* Read information from class variable */ if (!isset($info['CLASS'])){ - print_red(_("Your gosa.conf information has changed partly. Please convert it using the contributed script fix_config.sh!")); + print_red(_("Your gosa.conf format has changed. Please re-run setup!")); echo $_SESSION['errors']; exit; } diff --git a/include/class_socketClient.inc b/include/class_socketClient.inc index ae72d1051..2e2033b6c 100755 --- a/include/class_socketClient.inc +++ b/include/class_socketClient.inc @@ -58,7 +58,7 @@ class Socket_Client private function decrypt($data) { /* decrypt data */ - $data = base64_decode($data); + $data = base64_decode($data); mcrypt_generic_init($this->td, $this->ckey, $this->iv); return mdecrypt_generic($this->td, $data); }