Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: don't update the version number
  • Loading branch information
thorsten committed Feb 13, 2023
1 parent 49db615 commit 2156573
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion phpmyfaq/admin/configuration.php
Expand Up @@ -52,7 +52,10 @@

// Special checks
if (isset($editData['edit']['main.enableMarkdownEditor'])) {
$editData['edit']['main.enableWysiwygEditor'] = false; // Disable WYSIWG editor if Markdown is enabled
$editData['edit']['main.enableWysiwygEditor'] = false; // Disable WYSIWYG editor if Markdown is enabled
}
if (isset($editData['edit']['main.currentVersion'])) {
unset($editData['edit']['main.currentVersion']); // don't update the version number
}

foreach ($editData['edit'] as $key => $value) {
Expand Down

0 comments on commit 2156573

Please sign in to comment.