Index: trunk/phase3/includes/Action.php |
— | — | @@ -107,7 +107,7 @@ |
108 | 108 | * @return WebRequest |
109 | 109 | */ |
110 | 110 | protected final function getRequest() { |
111 | | - return $this->getContext()->request; |
| 111 | + return $this->getContext()->getRequest(); |
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
— | — | @@ -116,7 +116,7 @@ |
117 | 117 | * @return OutputPage |
118 | 118 | */ |
119 | 119 | protected final function getOutput() { |
120 | | - return $this->getContext()->output; |
| 120 | + return $this->getContext()->getOutput(); |
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
— | — | @@ -125,7 +125,7 @@ |
126 | 126 | * @return User |
127 | 127 | */ |
128 | 128 | protected final function getUser() { |
129 | | - return $this->getContext()->user; |
| 129 | + return $this->getContext()->getOutput(); |
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
— | — | @@ -134,7 +134,7 @@ |
135 | 135 | * @return Skin |
136 | 136 | */ |
137 | 137 | protected final function getSkin() { |
138 | | - return $this->getContext()->skin; |
| 138 | + return $this->getContext()->getSkin(); |
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
— | — | @@ -143,7 +143,7 @@ |
144 | 144 | * @return Skin |
145 | 145 | */ |
146 | 146 | protected final function getLang() { |
147 | | - return $this->getContext()->lang; |
| 147 | + return $this->getContext()->getLang(); |
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |