Following the previous hints I got from firebug, I was able to track-back the files which are directly linked to the displaying of the "Edit File" pencil label (when using WebDAV).
1) mysiteroot\adminiswtrator\language\en-GB\en-GB.com_joomdoc.ini
2) mysiteroot\administrator\components\com_joomdoc\libraries\joomdoc\utilities\webdav.php
file nr.1 contains the "Edit File" label while file nr.2 contains the code (line 67-69) which is responsible of displaying the pencil icon plus (filename) and "Edit File" label
Now, I don't know why this is happening but, the code in #2-69:
$document->addCustomTag('<script id="tableRowFile" type="text/html"><a class="editWebDav" id=\'{id}\' href=\'{href}\' title=\'' . JText::_('JOOMDOC_EDIT_WEBDAV') . '\'><strong>{name}</strong><span class="j25">' . JText::_('JOOMDOC_EDIT_FILE') . '</span></a></script>');
By removing the <strong></strong> code, I was able to bring the label back but it also contains the file name:
e.g.
filename.docEdit File
I'd rather prefer "Edit File" only but if I remove {name} from the 69 line, the icon+label is not displayed at all!
So I added an extra space to file #1 "Edit File" line 94 as follows:
JOOMDOC_EDIT_FILE=" Edit File"
And the results is:
pencil icon filename.doc Edit File
Request:
In first place, I'd love to fix the html page messing up (ref. my previous post)
If no clue, either having the webdav pencil icon+"Edit File" only or advise on what to do otherwise.
Thank you
DL