forked from science-ation/science-ation
Truncate username at 16 characters for scheduler statuses that connect to the database on their own
This commit is contained in:
parent
64026ed724
commit
c29df673a6
@ -1,6 +1,6 @@
|
||||
<?
|
||||
include "../data/config.inc.php";
|
||||
mysql_connect($DBHOST,$DBUSER,$DBPASS);
|
||||
mysql_connect($DBHOST,substr($DBUSER,0,16),$DBPASS);
|
||||
mysql_select_db($DBNAME);
|
||||
$q=mysql_query("SELECT val FROM config WHERE year='0' AND var='judge_scheduler_percent'");
|
||||
$r=mysql_fetch_object($q);
|
||||
|
@ -26,7 +26,7 @@ ogram; see the file COPYING. If not, write to
|
||||
|
||||
if($_GET['action'] == 'output') {
|
||||
include "../data/config.inc.php";
|
||||
mysql_connect($DBHOST,$DBUSER,$DBPASS);
|
||||
mysql_connect($DBHOST,substr($DBUSER,0,16),$DBPASS);
|
||||
mysql_select_db($DBNAME);
|
||||
$q=mysql_query("SELECT val FROM config WHERE year='0' AND var='tours_assigner_percent'");
|
||||
$r=mysql_fetch_object($q);
|
||||
|
Loading…
Reference in New Issue
Block a user