dmitryd / typo3-simplemvc

[OBSOLETE] A TYPO3 "simplemvc" extension. This extension adds a simple high performance MVC framework to TYPO3.
7 stars 0 forks source link

parameterPrefix shall not be protected #10

Closed franzholz closed 10 years ago

franzholz commented 10 years ago

The parameterPrefix is also needed in the view class in order to generate the parameters for the links. However the parameterPrefix is protected and cannot be used outside of the controller classes. Make it public or add a getter method for it.

abstract class AbstractController {

protected $parameterPrefix = null;

}