]> git.llucax.com Git - z.facultad/75.43/tp1.git/commitdiff
Pseudo bugfix, se agrega el ranking para sumar créditos.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 8 May 2005 05:35:29 +0000 (05:35 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 8 May 2005 05:35:29 +0000 (05:35 +0000)
src/lib/file.creditos.php

index 4a9e9235679a1dfa17e0457cf9775806a7dd33c0..d4d4cc1729f77f7ded391d8a66a7cbe9401be97e 100644 (file)
@@ -57,12 +57,12 @@ function file_creditos_preguntar($user)
  *
  * @return Array con los nuevos valores de créditos.
  */
-function file_creditos_evaluar($user, $es_bonus = false, $bonus_cant = 5)
+function file_creditos_evaluar($user, $rank, $es_bonus = false, $bonus_cant = 5)
 {
     if (!($row = file_creditos_get($user))) return false;
     list($fecha, $creditos, $bonus, $dias) = $row;
     $bonus2 = $bonus;
-    $creditos2 = $creditos;
+    $creditos2 = $creditos + $rank;
     if ($es_bonus) $bonus2++;
     if ($bonus2 >= $bonus_cant)
     {