mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Removed pattern restrictions in admin interface
Updated changelog for 1.14.3 release
This commit is contained in:
17
CHANGELOG
17
CHANGELOG
@@ -1,3 +1,20 @@
|
|||||||
|
queXS 1.14.3 - Changes since 1.14.2
|
||||||
|
|
||||||
|
The third bug fix release for the 1.14 series of queXS.
|
||||||
|
|
||||||
|
Fixed issue: More than 2 character long locale code not being recognised
|
||||||
|
Fixed issue: Method return value error
|
||||||
|
Fixed issue: Numbers starting with 0 were being stripped
|
||||||
|
Fixed issue: Appointments not working when no shifts scheduled and local timezone is different from respondent
|
||||||
|
Fixed issue: lp:1620421 SQL not compatible with ONLY_FULL_GROUP_BY mode
|
||||||
|
|
||||||
|
New feature: Allow operators to see upcoming appointments and assign to themselves if necessary
|
||||||
|
|
||||||
|
Database update (Please note - if you are having issues with custom outcomes - please run this code on your database):
|
||||||
|
|
||||||
|
ALTER TABLE `outcome` AUTO_INCREMENT = 100;
|
||||||
|
|
||||||
|
|
||||||
queXS 1.14.2 - Changes since 1.14.1
|
queXS 1.14.2 - Changes since 1.14.1
|
||||||
|
|
||||||
A bug fix release for the 1.14 series of queXS
|
A bug fix release for the 1.14 series of queXS
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ if ( (isset($_GET['appointment_id']) && isset($_GET['case_id'])) ||(isset($_GET[
|
|||||||
|
|
||||||
print "<div class='col-lg-4' id='addPhone' style='display:none'>
|
print "<div class='col-lg-4' id='addPhone' style='display:none'>
|
||||||
<div class='col-lg-6' id=''>
|
<div class='col-lg-6' id=''>
|
||||||
<input type=\"tel\" maxlength=\"10\" pattern=\"[0-9]{10}\" class='form-control col-lg-2 ' name='addphonenumber' />
|
<input type=\"tel\" class='form-control col-lg-2 ' name='addphonenumber' />
|
||||||
</div>
|
</div>
|
||||||
</div>";
|
</div>";
|
||||||
//*end option
|
//*end option
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ if (isset($_GET['edit']) || isset($_GET['addext']))
|
|||||||
</div>
|
</div>
|
||||||
<div class="form-group form-inline">
|
<div class="form-group form-inline">
|
||||||
<label class="control-label col-lg-3"><?php echo T_("Extension password: ");?></label>
|
<label class="control-label col-lg-3"><?php echo T_("Extension password: ");?></label>
|
||||||
<input name="password" type="text" required pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" style="width:20em;" maxlength="50" value="<?php if (isset($_GET['edit'])) echo $rs['password'];?>" class="form-control pull-left" placeholder="<?php echo T_("Enter New Password");?>"/>  <?php echo T_(" or ");?> 
|
<input name="password" type="text" required style="width:20em;" maxlength="50" value="<?php if (isset($_GET['edit'])) echo $rs['password'];?>" class="form-control pull-left" placeholder="<?php echo T_("Enter New Password");?>"/>  <?php echo T_(" or ");?> 
|
||||||
<input type="button" onclick="generate();" value="<?php echo T_("Generate");?>" class="btn btn-default fa" /> <?php echo T_("New password");?> 
|
<input type="button" onclick="generate();" value="<?php echo T_("Generate");?>" class="btn btn-default fa" /> <?php echo T_("New password");?> 
|
||||||
<input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" /> <?php echo T_("characters long");?>
|
<input type="number" name="number" value="25" min="8" max="50" style="width:5em;" class="form-control" /> <?php echo T_("characters long");?>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user