Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
fix missing &
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaruesweg committed Jul 13, 2015
1 parent 8d23fc2 commit 9389bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/lib/acp/form/JCoinsShopItemAddForm.class.php
Expand Up @@ -108,7 +108,7 @@ public function readFormParameters() {
if (isset($_POST['price'])) $this->price = intval($_POST['price']);
if (isset($_POST['type'])) $this->typeID = intval($_POST['type']);

if (isset($_POST['parseBBCodes']) & $_POST['parseBBCodes'] == 1) $this->parseBBCodes = true;
if (isset($_POST['parseBBCodes']) && $_POST['parseBBCodes'] == 1) $this->parseBBCodes = true;
if (isset($_POST['allowHTML']) && $_POST['allowHTML'] == 1) $this->allowHTML = true;
if (isset($_POST['allowSmileys']) && $_POST['allowSmileys'] == 1) $this->allowSmileys = true;

Expand Down

0 comments on commit 9389bb3

Please sign in to comment.