Skip to content

Commit

Permalink
fix invite harem addition
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaomlove committed Dec 5, 2022
1 parent aa0cf10 commit a0fb2c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/constants.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
defined('VERSION_NUMBER') || define('VERSION_NUMBER', '1.7.32');
defined('RELEASE_DATE') || define('RELEASE_DATE', '2022-12-04');
defined('RELEASE_DATE') || define('RELEASE_DATE', '2022-12-05');
defined('IN_TRACKER') || define('IN_TRACKER', false);
defined('PROJECTNAME') || define("PROJECTNAME","NexusPHP");
defined('NEXUSPHPURL') || define("NEXUSPHPURL","https://nexusphp.org");
Expand Down
2 changes: 1 addition & 1 deletion public/invite.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function inviteMenu ($selected = "invitee") {

print("<tr class=rowfollow>$user<td>{$arr['email']}</td><td class=rowfollow>" . mksize($arr['uploaded']) . "</td><td class=rowfollow>" . mksize($arr['downloaded']) . "</td><td class=rowfollow>$ratio</td>");
if ($haremAdditionFactor > 0) {
print ("<td class=rowfollow>".number_format(calculate_seed_bonus($arr['id'])['all_bonus'] * $haremAdditionFactor, 3)."</td>");
print ("<td class=rowfollow>".number_format(calculate_seed_bonus($arr['id'])['seed_points'] * $haremAdditionFactor, 3)."</td>");
}
print("<td class=rowfollow>$status</td>");
if ($CURUSER['id'] == $id || get_user_class() >= UC_SYSOP){
Expand Down

0 comments on commit a0fb2c6

Please sign in to comment.