Browse Source

Removed undefined content variable in new wiki page creation (there isn't supposed to be any text there anyway)

ywarnier 13 years ago
parent
commit
70c4bd6aa9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/wiki/wiki.inc.php

+ 1 - 1
main/wiki/wiki.inc.php

@@ -587,7 +587,7 @@ return true;
         echo '</tr>';
         echo '<tr>';
         //echo '<td><textarea name="task" cols="60" rows="4" >'.stripslashes($row['task']).'</textarea></td>';	// TODO: ¿delete?
-        echo '<td>'.api_disp_html_area('task', $row['task'], '', '', null, array('ToolbarSet' => 'wiki_task', 'Width' => '580', 'Height' => '200')).'</td>';
+        echo '<td>'.api_disp_html_area('task', '', '', '', null, array('ToolbarSet' => 'wiki_task', 'Width' => '580', 'Height' => '200')).'</td>';
         echo '</tr>';
         echo '</table>';
         echo '</div>';