I don't understand what happens.
Since I upgraded to 1.6 version, and when I try to edit an article, I can't do it.
Please, see screenshot below :

Thank you for help.
Regards,
Moderator: Thorsten
Do you receive any error during the running of the update stage (http://<hostname>/path/to/yourPMF/install/update.php)?SaNkA wrote:1.5.8matteo wrote:You've upgraded PMF to 1.6.0 starting from which version of PMF?
Code: Select all
<!--<a name="cat_7" />--><div class="categorylisting"><a href="#cat_7" onclick="showhideCategory('category_7');"><img src="../images/more.gif" width="11" height="11" alt="" /> Dico</a></div>
<div id="category_7" class="categorybox" style="display: none;">
<table class="listrecords">
<tbody>
<tr>
...
</tr>
<tr>
...
</tr>
</table>
</div>
Code: Select all
div class="categorylisting"><a href="#cat_12" onclick="showhideCategory('category_12');">...
Code: Select all
...
* under the License.
*/
function Picture(pic,title,width,height)
{
popup = window.open(pic, title, 'width='+width+', height='+height+', toolbar=no, directories=no, status=no, scrollbars=no, resizable=yes, menubar=no');
popup.focus();
}
function checkAll(checkBox)
{
var v = checkBox.checked;
var f = checkBox.form;
for (var i = 0; i < f.elements.length; i++) {
if (f.elements[i].type == "checkbox") {
f.elements[i].checked = v;
}
}
}
function addEngine(uri, name, ext, cat)
{
if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) {
window.sidebar.addSearchEngine(uri+"/"+name+".src", uri+"/images/"+name+"."+ext, name, cat);
} else {
alert('Mozilla Firefox, Mozilla or Netscape 6 or later is needed to install the search plugin!');
}
}
function focusOnUsernameField()
{
if (document.forms[0] && document.forms[0].elements["faqusername"]) {
document.forms[0].elements["faqusername"].focus();
}
}
/**
* showhideCategory()
*
* Displays or hides a div block
*
* @param string
* @return void
* @access public
* @since 2006-03-04
* @author Thorsten Rinne <thorsten@phpmyfaq.de>
*/
function showhideCategory(id)
{
if (document.getElementById(id).style.display == 'none') {
document.getElementById(id).style.display = 'block';
} else {
document.getElementById(id).style.display = 'none';
}
}