Changeset 9284
- Timestamp:
- 05/26/08 19:42:40 (3 months ago)
- Files:
-
- plugins/ddOpenIDPlugin/config/config.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/ddOpenIDPlugin/config/config.php
r9283 r9284 3 3 if (sfConfig::get('app_sfOpenIDPlugin_routes_register', true) && in_array('sfOpenIDAuth', sfConfig::get('sf_enabled_modules'))) 4 4 { 5 /* 6 * TODO : incompatible with sf-1.1. Throws "Uncaught exception 'sfException' with message 'The "default" context does not exist.'" 7 * 8 * $r = sfContext::getInstance()->getRouting(); 9 10 5 $r = sfContext::getInstance()->getRouting(); 11 6 12 7 // preprend our routes … … 22 17 $r->prependRoute('openid_signin', '/openid', array('module' => 'sfOpenIDAuth', 'action' => 'signin')); 23 18 $r->prependRoute('openid_finishauth', '/openid/finish/*', array('module' => 'sfOpenIDAuth', 'action' => 'finish')); 24 */25 19 }