You have the $meta_query array nested one level too deep. Try changing this:
$meta_query[] = array('relation' => 'OR',
to this:
$meta_query = array('relation' => 'OR',
You have the $meta_query array nested one level too deep. Try changing this:
$meta_query[] = array('relation' => 'OR',
to this:
$meta_query = array('relation' => 'OR',