blocks editing ui: MDL-19398 Remove stupid pass by reference.

Was causing errors when this method was called via block_method_result
This commit is contained in:
tjhunt
2009-07-15 08:55:52 +00:00
parent 7cf51142ab
commit 15a00b4be0
+1 -1
View File
@@ -646,7 +646,7 @@ class block_base {
* @return boolean
* @todo finish documenting this function
*/
function user_can_addto(&$page) {
function user_can_addto($page) {
return true;
}