Skip to content

Commit

Permalink
fix css parsing bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
tbela99 committed Nov 9, 2021
1 parent 25d4b6d commit b37168b
Show file tree
Hide file tree
Showing 96 changed files with 1,139 additions and 1,363 deletions.
2 changes: 1 addition & 1 deletion bgstyles.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"ext-json": "*",
"ext-sodium": "*"
}
}
}
2 changes: 1 addition & 1 deletion fields/soduimsecret.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected function getInput()
$attributes .= ' disabled';
}

$html = '<input type="text" value="'.htmlspecialchars($this->value).'" id="'.$this->id.'" '.$attributes.'> <button type="button" class="btn btn-success" onclick="this.previousElementSibling.value=\'\'">Reset</button>';
$html = '<input type="text" name="'.htmlspecialchars($this->name).'" value="'.htmlspecialchars($this->value).'" id="'.$this->id.'" '.$attributes.'> <button type="button" class="btn btn-success" onclick="this.previousElementSibling.value=\'\'">Reset</button>';

return '<div class="btn-group">'.$html.'</div>';
}
Expand Down
Loading

0 comments on commit b37168b

Please sign in to comment.