From e223ef9ae0c67101e8ef38d701fcd618161e784d Mon Sep 17 00:00:00 2001 From: pk910 Date: Wed, 21 Dec 2011 20:25:07 +0100 Subject: [PATCH] fixed last commit --- Uplink/Uplink.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Uplink/Uplink.class.php b/Uplink/Uplink.class.php index 387f324..8d0451f 100644 --- a/Uplink/Uplink.class.php +++ b/Uplink/Uplink.class.php @@ -786,7 +786,7 @@ class Uplink { $priv_values = array(P10_Channel::USERPRIV_OPED, P10_Channel::USERPRIV_HALFOP, P10_Channel::USERPRIV_VOICE ); $priv_combinations = array(); $sorted_users = array(); - $combinations = expr(2, count($privs_to_burst)); //binary possibilities => 2^count($privs_to_burst) + $combinations = pow(2, count($privs_to_burst)); //binary possibilities => 2^count($privs_to_burst) for($i = 0; $i < $combinations; $i++) { //make a binary number out of $i $binary = decbin($i); @@ -797,7 +797,7 @@ class Uplink { for($j = 0; $j < count($privs_to_burst); $j++) { if($binary[$j] == '1') { $combination_name .= $privs_to_burst[$j]; - $combination_value .= $priv_values[$j]; + $combination_value += $priv_values[$j]; } } $priv_combinations[] = array("name" => $combination_name, "value" => $combination_value); @@ -818,7 +818,7 @@ class Uplink { if($userStr != "") $userStr.=","; $userStr .= $user->getNumeric(); if(($i++) == 0 && $combination['value'] > 0) { - $userStr .= $combination['name']; + $userStr .= ":".$combination['name']; } } } -- 2.20.1