【发布时间】:2013-10-07 08:23:38
【问题描述】:
嘿,我是 joomla 的新手,正在制作一个名为 profile 的组件。我在文件夹控制器/setting.php 中遇到错误。 这是我的代码;
类 ProfileControllerSetting 扩展 JControllerForm {
function save(){
parent::save();
if($this->task=='save')
$this->setredirect('index.php?option=com_profile');
}
function cancel(){
$this->setredirect('index.php?option=com_profile');
}
}
来的错误是:Strict Standards: Declaration of ProfileControllerSetting::cancel() should be compatible with JControllerForm::cancel($key = NULL)
和
Strict Standards: Declaration of ProfileControllerSetting::save() should be compatible with JControllerForm::save($key = NULL, $urlVar = NULL)
请帮帮我。
【问题讨论】: