Re: Make zones mandatory

Posts: 5269
Joined: 08/07/2007
AdministratorHead Code Monkey - I eat bugs.

In the function uc_zone_select() you need to modify it to look like the following:

<?php
  $select
= array(
   
'#type' => 'select',
   
'#title' => $title,
   
'#description' => $description,
   
'#options' => $options,
   
'#default_value' => $default,
   
'#required' => TRUE// <--- Add this line.
 
);
?>

Make zones mandatory By: sanne (4 replies) Fri, 08/31/2007 - 01:26