Page 1 of 1

Callback time increments.

PostPosted: Fri Feb 29, 2008 6:38 pm
by enjay
How difficult would it be to change the callback time increments from say 30 minutes to 5 minute increments?

could I just modify the vicidial.php code to reflect 00-05-10-15 so on instead of just 00 and 30?


-Art

PostPosted: Fri Feb 29, 2008 7:22 pm
by mflorell
That should just involve editing the select list code, nothing else should need to be changed I think.

matt

PostPosted: Fri Feb 29, 2008 10:25 pm
by eliasferreyra
matt ...


can we do that on vicidial.php 00-05-10-15 so on instead of just 00 and 30? :D

PostPosted: Sat Mar 01, 2008 12:03 am
by mflorell
I will change it in SVN, it's a pretty simple fix, jut change these lines at the bottom of vicidial.php:

<option>00</option>
<option>30</option>

and put these lines in their place:

<option>00</option>
<option>05</option>
<option>10</option>
<option>15</option>
<option>20</option>
<option>25</option>
<option>30</option>
<option>35</option>
<option>40</option>
<option>45</option>
<option>50</option>
<option>55</option>

PostPosted: Sat Mar 01, 2008 2:29 am
by DarknessBBB
This change is present in this diff file, too. ;)
http://www.eflo.net/VICIDIALmantis/view.php?id=149