finish oauth provider + docker service wait for MySQL

This commit is contained in:
xiaomlove
2025-05-01 14:18:30 +07:00
parent cc89e8aa59
commit af33e5cba7
26 changed files with 450 additions and 41 deletions

View File

@@ -1,6 +1,6 @@
<?php
defined('VERSION_NUMBER') || define('VERSION_NUMBER', '1.9.0');
defined('RELEASE_DATE') || define('RELEASE_DATE', '2025-04-27');
defined('RELEASE_DATE') || define('RELEASE_DATE', '2025-05-01');
defined('IN_TRACKER') || define('IN_TRACKER', false);
defined('PROJECTNAME') || define("PROJECTNAME","NexusPHP");
defined('NEXUSPHPURL') || define("NEXUSPHPURL","https://nexusphp.org");

View File

@@ -4890,7 +4890,6 @@ function get_searchbox_value($mode = 1, $item = 'showsubcat'){
}
function get_ratio($userid, $html = true){
global $lang_functions;
$row = get_user_row($userid);
$uped = $row['uploaded'];
$downed = $row['downloaded'];
@@ -4905,7 +4904,7 @@ function get_ratio($userid, $html = true){
$ratio = "<font color=\"".$color."\">".$ratio."</font>";
}
elseif ($uped > 0)
$ratio = $lang_functions['text_inf'];
$ratio = nexus_trans("label.infinite");
else
$ratio = "---";
}