Files show up as DLFE-# when you look them up via the fck browser.
1. Click "Add Article"
2. Click "Insert/Edit Link"
3. Click "Browse Server"
Files show up as DLFE-#. (DLFE is the primary key used to keep track of documents. We need to keep track of a primary key so we can differentiate between documents that have the same name).
The fix is to change getName() to getTitle():
fileEl.setAttribute("name", fileEntry.getTitle());
fileEl.setAttribute("desc", fileEntry.getTitle());