Skip to content
This repository has been archived by the owner on Dec 18, 2021. It is now read-only.

[validate_empty] fix notice.. #92

Merged
merged 1 commit into from
Jul 3, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion classes/validate/class.xform.validate_empty.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class rex_xform_validate_empty extends rex_xform_validate_abstract

function enterObject()
{
if($this->params["send"]=="1")
if($this->params["send"]=="1" && is_array($this->obj_array))
{
foreach($this->obj_array as $Object)
{
Expand Down