/[drupal]/contributions/modules/conference_organizing/conference_organizing.module
ViewVC logotype

Diff of /contributions/modules/conference_organizing/conference_organizing.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.10, Mon Dec 24 17:15:22 2007 UTC revision 1.11, Sat Dec 29 01:49:34 2007 UTC
# Line 1  Line 1 
1  <?php // $Id: conference_organizing.module,v 1.9 2007/11/05 23:42:58 zacker Exp $  <?php // $Id: conference_organizing.module,v 1.10 2007/12/24 17:15:22 weitzman Exp $
2    
3  /**  /**
4   *  @file   *  @file
# Line 581  function conference_organizing_form_alte Line 581  function conference_organizing_form_alte
581      }      }
582    
583      // Set the minute display on the time input form      // Set the minute display on the time input form
584      $schedule_increment = bcdiv(variable_get('conference_organizing_schedule_increment', '1800'), '60'); // in minutes      $schedule_increment = variable_get('conference_organizing_schedule_increment', '1800') / 60; // in minutes
585      for ($min = '00'; $min < 60; $min = $min + $schedule_increment) {      for ($min = '00'; $min < 60; $min = $min + $schedule_increment) {
586        $incremented_options[$min] = $min;        $incremented_options[$min] = $min;
587      }      }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.2