bug fix: template load of email limits
This commit is contained in:
parent
a2dd43b97b
commit
48649804c0
|
|
@ -892,7 +892,11 @@ $cfg['Servers'][$i]['LogoutURL'] = 'phpmyadminsignin.php?logout';
|
|||
cursor.execute("UPDATE loginSystem_acl SET config = '%s' where name = 'admin'" % (Upgrade.AdminACL))
|
||||
except BaseException as msg:
|
||||
print(str(msg))
|
||||
import sleep
|
||||
try:
|
||||
import sleep
|
||||
except:
|
||||
from time import sleep
|
||||
from time import sleep
|
||||
sleep(10)
|
||||
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in New Issue