Update GridFieldBulkImageUpload_Request.php

Silverstripe 3.1.0 requires statics to be defined as private

http://doc.silverstripe.org/framework/en/3.1/changelogs/3.1.0
This commit is contained in:
MattyBalaam 2013-03-28 17:24:22 +00:00
parent 60a5e48979
commit 5cbacb40b0
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class GridFieldBulkImageUpload_Request extends RequestHandler {
/**
*
*/
static $url_handlers = array(
private static $url_handlers = array(
'$Action!' => '$Action'
);
@ -430,4 +430,4 @@ class GridFieldBulkImageUpload_Request extends RequestHandler {
)));
return $items;
}
}
}