diff --git a/bureau/class/m_dom.php b/bureau/class/m_dom.php index a51e6b7b..4699310b 100644 --- a/bureau/class/m_dom.php +++ b/bureau/class/m_dom.php @@ -103,7 +103,7 @@ class m_dom { /** * @param string $fqdn */ - function get_sub_domain_id_and_member_by_name($fqdn) { + public static function get_sub_domain_id_and_member_by_name($fqdn) { global $db, $err, $cuid; $err->log("dom", "get_sub_domain_by_name"); $fqdn = mysql_real_escape_string($fqdn); @@ -113,6 +113,7 @@ class m_dom { return array('sub_id' => intval($db->f('id')), 'member_id' => intval($db->f('compte'))); } + function hook_menu() { global $quota; $obj = array( diff --git a/debian/changelog b/debian/changelog index d28fe74f..9399fa89 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ alternc (3.1.3) oldstable; urgency=low * fix a probable privilege escalation in cron management * fix a random number generation issue in PHP (rand automatically initialized by time(), not better!) * fix some shell_exec() or exec() not using escapeshellarg in PHP. + * fix set a proper SSLCipherSuite, removes SSLv3 (poodle protection) -- Benjamin Sonntag Mon, 27 Nov 2014 11:17:12 +0100