alecpl
2008-07-28 3ac95d5a673db544d7ceeaa9e5fca766cb738120
#1485230: allow only images (by filename extension) in tinyMCE's images selector


1 files modified
4 ■■■ changed files
program/js/editor_images.js 4 ●●● patch | view | raw | blame | history
program/js/editor_images.js
@@ -15,6 +15,8 @@
            fname = liElem.childNodes[j].nodeValue;
         }
      }
      tinyMCEImageList.push([fname, rc_client.env.comm_path+'&_action=display-attachment&_file='+attachElems[i].id]);
      if (fname.match(/\.(bmp|gif|png|jpg|jpeg)$/))
        tinyMCEImageList.push([fname, rc_client.env.comm_path+'&_action=display-attachment&_file='+attachElems[i].id]);
   }
};