Removing description from tests results, as this is generally an introductory description - refs BT#6120

1.9.x
Yannick Warnier 13 years ago
parent dd8da18e64
commit ba19a7e27b
  1. 9
      main/exercice/exercise.class.php

@ -3455,11 +3455,14 @@ class Exercise {
if (!empty($user_data)) {
$array[] = array('title' => get_lang("User"), 'content' => $user_data);
}
// Description can be very long and is generally meant to explain
// rules *before* the exam. Leaving here to make display easier if
// necessary
/*
if (!empty($this->description)) {
$array[] = array('title' => get_lang("Description"), 'content' => $this->description);
}
*/
if (!empty($start_date)) {
$array[] = array('title' => get_lang("StartDate"), 'content' => $start_date);
}
@ -3900,4 +3903,4 @@ class Exercise {
}
return $list;
}
}
}

Loading…
Cancel
Save