1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Flexpanel status/latest menu render fixes.

This commit is contained in:
Cameron
2017-01-16 16:14:49 -08:00
parent 347c9f9af0
commit 2cca2373ed
3 changed files with 19 additions and 5 deletions

View File

@@ -144,15 +144,18 @@ class e107_debug {
$aDVal = explode('.',$dVals); // support multiple values, OR'd together
$dVal = 0;
foreach ($aDVal as $curDVal)
{
if (isset($this->aDebugShortcuts[$curDVal]))
{
$dVal |= $this->aDebugShortcuts[$curDVal];
}
}
else
{
$dVal |= $curDVal;
$dVal |= intval($curDVal);
}
}