Bug fixes for not initialized array calls
This commit is contained in:
@@ -597,7 +597,7 @@ class Login extends \CoreLibs\DB\IO
|
|||||||
// unset mem limit if debug is set to 1
|
// unset mem limit if debug is set to 1
|
||||||
// if (($GLOBALS["DEBUG_ALL"] || $GLOBALS["DB_DEBUG"] || $_SESSION["DEBUG_ALL"] || $_SESSION["DB_DEBUG"]) && ini_get('memory_limit') != -1)
|
// if (($GLOBALS["DEBUG_ALL"] || $GLOBALS["DB_DEBUG"] || $_SESSION["DEBUG_ALL"] || $_SESSION["DB_DEBUG"]) && ini_get('memory_limit') != -1)
|
||||||
// ini_set('memory_limit', -1);
|
// ini_set('memory_limit', -1);
|
||||||
if ($res['filename'] == $this->page_name) {
|
if (isset($res['filename']) && $res['filename'] == $this->page_name) {
|
||||||
$this->permission_okay = true;
|
$this->permission_okay = true;
|
||||||
} else {
|
} else {
|
||||||
$this->login_error = 103;
|
$this->login_error = 103;
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ class PgSQL
|
|||||||
$q .= "AND indisprimary";
|
$q .= "AND indisprimary";
|
||||||
$cursor = $this->__dbQuery($q);
|
$cursor = $this->__dbQuery($q);
|
||||||
if ($cursor) {
|
if ($cursor) {
|
||||||
return $this->__dbFetchArray($cursor)['column_name'];
|
return $this->__dbFetchArray($cursor)['column_name'] ?? false;
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1646,7 +1646,7 @@ class Generate extends \CoreLibs\DB\Extended\ArrayIO
|
|||||||
// data part, read from where [POST]
|
// data part, read from where [POST]
|
||||||
// radio group selections (only one can be active)
|
// radio group selections (only one can be active)
|
||||||
if ($data_array['type'] == 'radio_group') {
|
if ($data_array['type'] == 'radio_group') {
|
||||||
if ($i == $_POST[$prfx.$el_name]) {
|
if (isset($_POST[$prfx.$el_name]) && $i == $_POST[$prfx.$el_name]) {
|
||||||
$_value = $i + 1;
|
$_value = $i + 1;
|
||||||
} else {
|
} else {
|
||||||
$_value = 'NULL';
|
$_value = 'NULL';
|
||||||
|
|||||||
Reference in New Issue
Block a user