diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-16 15:36:30 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-16 15:36:30 -0800 |
commit | 6f9b90921188f477f8b8224c12d6ea7e8b3cc1d3 (patch) | |
tree | c086820fc04f212fd8cbd580563623999adc89e7 | |
parent | a99198ba94766dcfb58d4cc16358dc1438df422a (diff) |
Fix for PHP spewing notices from commit a373d07ae00b878f47970f2e4a7d86c6ec3a65cf
Please test with error_reporting set to E_ALL!
Classnames and function names aren't first-class objects in PHP and need to be referenced as strings here. :(
-rw-r--r-- | plugins/Authentication/AuthenticationPlugin.php | 2 | ||||
-rw-r--r-- | plugins/OpenID/OpenIDPlugin.php | 4 | ||||
-rw-r--r-- | plugins/UserFlag/UserFlagPlugin.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Authentication/AuthenticationPlugin.php b/plugins/Authentication/AuthenticationPlugin.php index a80da901c..1b9084187 100644 --- a/plugins/Authentication/AuthenticationPlugin.php +++ b/plugins/Authentication/AuthenticationPlugin.php @@ -204,7 +204,7 @@ abstract class AuthenticationPlugin extends Plugin function onCheckSchema() { $schema = Schema::get(); - $schema->ensureDataObject(User_username); + $schema->ensureDataObject('User_username'); return true; } diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 88e23ea3e..6dd8a3f5a 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -281,8 +281,8 @@ class OpenIDPlugin extends Plugin function onCheckSchema() { $schema = Schema::get(); - $schema->ensureDataObject(User_openid); - $schema->ensureDataObject(User_openid_trustroot); + $schema->ensureDataObject('User_openid'); + $schema->ensureDataObject('User_openid_trustroot'); return true; } diff --git a/plugins/UserFlag/UserFlagPlugin.php b/plugins/UserFlag/UserFlagPlugin.php index df7eac7a2..b4d48c74b 100644 --- a/plugins/UserFlag/UserFlagPlugin.php +++ b/plugins/UserFlag/UserFlagPlugin.php @@ -48,7 +48,7 @@ class UserFlagPlugin extends Plugin $schema = Schema::get(); // For storing user-submitted flags on profiles - $schema->ensureDataObject(User_flag_profile); + $schema->ensureDataObject('User_flag_profile'); return true; } |