You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added error handling to several lines (line numbers changed a bit as I was tinkering)
These seemed to only occur on tables that was not yet set up with displayAs()
Line 2090
Undefined array key warning
replace:
if ($this->category_required[$field] != TRUE){
with:
if (isset($this->category_required[$field]) && $this->category_required[$field] !== TRUE){
Line 1554
Undefined Array key
replace:
if ($this->displayAs_array[$field] != ''){
with:
if (isset($this->displayAs_array[$field]) && $this->displayAs_array[$field] != '') {
Line 1972
Undefined Array key
replace:
if ($this->displayAs_array[$field] != ''){
with:
if (isset($this->displayAs_array[$field]) && $this->displayAs_array[$field] != '') {
The text was updated successfully, but these errors were encountered:
Added error handling to several lines (line numbers changed a bit as I was tinkering)
These seemed to only occur on tables that was not yet set up with displayAs()
Line 2090
Undefined array key warning
replace:
if ($this->category_required[$field] != TRUE){
with:
if (isset($this->category_required[$field]) && $this->category_required[$field] !== TRUE){
Line 1554
Undefined Array key
replace:
if ($this->displayAs_array[$field] != ''){
with:
if (isset($this->displayAs_array[$field]) && $this->displayAs_array[$field] != '') {
Line 1972
Undefined Array key
replace:
if ($this->displayAs_array[$field] != ''){
with:
if (isset($this->displayAs_array[$field]) && $this->displayAs_array[$field] != '') {
The text was updated successfully, but these errors were encountered: