Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert htmlspecialchars for CKEditor #621

Merged
merged 1 commit into from Jun 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/joborders/JobOrdersUI.php
Expand Up @@ -766,7 +766,7 @@ private function onAdd()
$department = $this->getTrimmedInput('department', $_POST);
$maxRate = $this->getSanitisedInput('maxRate', $_POST);
$salary = $this->getSanitisedInput('salary', $_POST);
$description = $this->getSanitisedInput('description', $_POST);
$description = $this->getTrimmedInput('description', $_POST);
$notes = $this->getSanitisedInput('notes', $_POST);

/* Bail out if any of the required fields are empty. */
Expand Down Expand Up @@ -1110,7 +1110,7 @@ private function onEdit()
$department = $this->getTrimmedInput('department', $_POST);
$maxRate = $this->getSanitisedInput('maxRate', $_POST);
$salary = $this->getSanitisedInput('salary', $_POST);
$description = $this->getSanitisedInput('description', $_POST);
$description = $this->getTrimmedInput('description', $_POST);
$notes = $this->getSanitisedInput('notes', $_POST);

/* Bail out if any of the required fields are empty. */
Expand Down