+ Added random link page
+ New syntax in config file. See update.txt for more details
+ Fixed #13
+ + Fixed #15
+ # Fixed #14
version 2.6 - Hypostyle (2021-03-21)
$catObjAlternative = new Category($DB);
$do = $catObjAlternative->initbystring($v,true);
if($do === 1) { # existing
+ if($k == $catObjAlternative->getData('id')) {
+ // Rename to the same. Do nothing
+ continue;
+ }
// the target cat should not be removed!
$catDoNotDeleteFromUpdate[$catObjAlternative->getData('id')] = $catObjAlternative->getData('id');
$catObjOld = new Category($DB);
$tagObjAlternative = new Tag($DB);
$do = $tagObjAlternative->initbystring($v,true);
if($do === 1) { # existing
+ if($k == $tagObjAlternative->getData('id')) {
+ // Rename to the same. Do nothing
+ continue;
+ }
// the target tag should not be removed!
$tagDoNotDeleteFromUpdate[$tagObjAlternative->getData('id')] = $tagObjAlternative->getData('id');
$tagObjOld = new Tag($DB);