forked from lino/radar-wp
Remove some PHP notices.
This commit is contained in:
parent
a18397d3e3
commit
def076a641
2 changed files with 5 additions and 1 deletions
|
@ -72,8 +72,10 @@ function radar_filter($settings) {
|
|||
* Collapses subfields, simplifies field list.
|
||||
*/
|
||||
function _radar_field_collect_subfields(&$fields) {
|
||||
$entity_fields = array();
|
||||
|
||||
foreach ($fields as $delta => $listed_field) {
|
||||
list($field, $subfield) = explode(':', $listed_field, 2);
|
||||
list($field, $subfield) = array_pad(explode(':', $listed_field, 2), 2, null);
|
||||
if (!empty($subfield)) {
|
||||
// A field with subfields.
|
||||
if (!empty($entity_fields[$field])) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue