Skip to content

Instantly share code, notes, and snippets.

@svandragt
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svandragt/10363474 to your computer and use it in GitHub Desktop.
Save svandragt/10363474 to your computer and use it in GitHub Desktop.
[SS] ModelController URL request argument handler problem
<?php
class Page_Controller extends ContentController {
public static $allowed_actions = array (
'test'
);
public function test($r) {
return 'ok';
}
}
// now create a new page /example and request /example/test/id/otherid/problem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment