我在Joomla 3.3网站上运行Simple Image Gallery Pro 3.0.4。图库正确创建图像,但我无法保存标题或说明。当我在SIG Pro中查看图库时,添加我的标题,然后单击“保存”,没有任何反应。
当我在Firebug中检查控制台时,出现此错误:
ReferenceError:submitform未定义submitform(按钮);
答案 0 :(得分:4)
我搜索并找到了解决此问题的解决方案
纠正此问题
在第55行的/administrator/components/com_sigpro/script.js文件中,替换
submitform(pressbutton);
与
if ( typeof submitform === 'undefined') {
$sig('#adminForm').find('input[name=task]').val(pressbutton);
$sig('#adminForm').submit();
}else{
submitform(pressbutton);
}
我希望它可以帮助某人