MINOR: Fix E_STRICT warnings

This commit is contained in:
Andrew O'Neil 2012-04-11 18:09:11 +12:00
parent bc4208097f
commit 12b30ff538
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class Folder_UnusedAssetsField extends CompositeField {
return $this->children;
}
public function FieldHolder() {
public function FieldHolder($properties = array()) {
$output = "";
foreach($this->getChildren() as $child) {
$output .= $child->FieldHolder();

View File

@ -19,7 +19,7 @@ class WidgetAreaEditor extends FormField {
parent::__construct($name);
}
function FieldHolder() {
function FieldHolder($properties = array()) {
Requirements::css(CMS_DIR . '/css/WidgetAreaEditor.css');
Requirements::javascript(THIRDPARTY_DIR . "/prototype/prototype.js");
Requirements::javascript(THIRDPARTY_DIR . '/behaviour/behaviour.js');