PDA

View Full Version : PHP Error


Hostboard
12-01-2021, 11:04 AM
I have edited the adminpermissions.php file for PHP compatibility but the edits are causing a 500 error. Any ideas?

Old code:
$permsphrase["$title"] = $vbphrase["$values[phrase]"];

New Code:
$permsphrase["$title"] = $vbphrase["$values['phrase']"];

stangger5
12-03-2021, 10:33 AM
Give this a try:

$permsphrase["$title"] = $vbphrase[$values['phrase']];