summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 96109a0)
raw | patch | inline | side by side (parent: 96109a0)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 12 Dec 2007 09:30:22 +0000 (09:30 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 12 Dec 2007 09:30:22 +0000 (09:30 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8091 594d385d-05f5-0310-b6e9-bd551577e9d8
include/class_pluglist.inc | patch | blob | history | |
include/class_socketClient.inc | patch | blob | history |
index 50e0c0f191a29158c58fd8df71453925b8992bf7..6fdf9b32026a722405bcfd5181d5bc09e70bd917 100644 (file)
/* 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;
}
index ae72d105115a6fdc8a85a15d5db2256e08ea9559..2e2033b6c6607703fc8ab84b12528b9ebdc35ee0 100755 (executable)
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);
}