[svn r18383] FS#2867 - FCKEditor, the MP3 plugin: Preventing the plugin to show directories, their URLs should not be treated as audio files.

skala
Ivan Tcholakov 16 years ago
parent ca1a9a58a9
commit b576e6da4c
  1. 6
      main/inc/course_document.inc.php

@ -250,6 +250,12 @@ if($docs_and_folders)
$sortable_data = array();
while (list ($key, $id) = each($docs_and_folders))
{
// Skip directories.
if ($id['filetype'] != 'file')
{
continue;
}
$row = array ();
//if the item is invisible, wrap it in a span with class invisible

Loading…
Cancel
Save