* Config change. Added new entry. See upgrade/from-version-1.5.txt. It won't work if it is missing.
* Licence change to GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
* Cleanups
- * Fixed: #21
- * Fixed: #22
- * Fixed: #26
+ * Fixed: #21 Debug? string in error log
+ * Fixed: #22 98 theme. Attachment selection checkbox are not all selectable
+ * Fixed: #26 98 theme. max column with
+ * Fixed: #25 98 design. Sort direction select does not show the correct selected option
1.5 - Sacred Passage 2023-05-01
* Added google books parser. See upgrade file for more infos.
* Better error handling and display while adding / update and delete
* Export of an entry, collection or everything. Stored on disk.
* Import of the export
+* remove ifset and maybe ifsetvalue from summoner
* Field management: Web interface to configure or even create new ones.
?>
</select>
<select name="sd">
- <option value="ASC">ascending</option>
- <option value="DESC">descending</option>
+ <option value="ASC" <?php echo ($TemplateData['pagination']['currentGetParameters']['sd'] ?? '') == 'ASC' ? 'selected' : '' ?>>ascending</option>
+ <option value="DESC" <?php echo ($TemplateData['pagination']['currentGetParameters']['sd'] ?? '') == 'DESC' ? 'selected' : '' ?>>descending</option>
</select>
<input type="submit" value="Sort" />
</form>
<div class="field-row-stacked">
<label for="defaultSortOrder">Default sort order</label>
<select id="defaultSortOrder" name="fdata[defaultSortOrder]">
- <option value="ASC" <?php if(Summoner::ifsetValue($TemplateData['editData'], 'defaultSortOrder', 'ASC')) echo 'selected'; ?>>ASCENDING</option>
- <option value="DESC" <?php if(Summoner::ifsetValue($TemplateData['editData'], 'defaultSortOrder', 'DESC')) echo 'selected'; ?>>DESCENDING</option>
+ <option value="ASC" <?php echo ($TemplateData['editData']['defaultSortOrder'] ?? '') == 'ASC' ? 'selected' : '' ?>>ASCENDING</option>
+ <option value="DESC" <?php echo ($TemplateData['editData']['defaultSortOrder'] ?? '') == 'DESC' ? 'selected' : '' ?>>DESCENDING</option>
</select>
</div>
<div class="field-row-stacked">
<label class="uk-form-label" for="defaultSortField">Default sort order</label>
<div class="uk-form-controls">
<select class="uk-select" id="defaultSortOrder" name="fdata[defaultSortOrder]">
- <option value="ASC" <?php if(Summoner::ifsetValue($TemplateData['editData'], 'defaultSortOrder', 'ASC')) echo 'selected'; ?>>ASCENDING</option>
- <option value="DESC" <?php if(Summoner::ifsetValue($TemplateData['editData'], 'defaultSortOrder', 'DESC')) echo 'selected'; ?>>DESCENDING</option>
+ <option value="ASC" <?php echo ($TemplateData['editData']['defaultSortOrder'] ?? '') == 'ASC' ? 'selected' : '' ?>>ASCENDING</option>
+ <option value="DESC" <?php echo ($TemplateData['editData']['defaultSortOrder'] ?? '') == 'DESC' ? 'selected' : '' ?>>DESCENDING</option>
</select>
</div>
</div>