Skip to content
Snippets Groups Projects

Work in progress

Merged Maite (Landshut) requested to merge workInProgress into master
5 files
+ 50
10
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 2
2
@@ -25,10 +25,10 @@ abstract class Question {
/* the header of each question is common */
protected function printTitleAndDescription() {
echo "<h1>".htmlspecialchars($this->title, ENT_QUOTES, 'UTF-8');
echo "<h2>".htmlspecialchars($this->title, ENT_QUOTES, 'UTF-8');
if($this->required)
echo "<span class='required'>*</span>";
echo "</h1>";
echo "</h2>";
$parsedown = new ExtendedParsedown();
$parsedown->setSafeMode(true);
Loading