Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -154,10 +154,8 @@ |
155 | 155 | |
156 | 156 | /** |
157 | 157 | * Constructor |
158 | | - * |
159 | | - * @public |
160 | 158 | */ |
161 | | - function __construct( $conf = array() ) { |
| 159 | + public function __construct( $conf = array() ) { |
162 | 160 | $this->mConf = $conf; |
163 | 161 | $this->mUrlProtocols = wfUrlProtocols(); |
164 | 162 | $this->mExtLinkBracketedRegex = '/\[(\b(' . wfUrlProtocols() . ')'. |
Index: trunk/phase3/includes/filerepo/File.php |
— | — | @@ -452,9 +452,8 @@ |
453 | 453 | * It would be unsafe to include private images, making public thumbnails inadvertently |
454 | 454 | * |
455 | 455 | * @return boolean Whether file exists in the repository and is includable. |
456 | | - * @public |
457 | 456 | */ |
458 | | - function isVisible() { |
| 457 | + public function isVisible() { |
459 | 458 | return $this->exists(); |
460 | 459 | } |
461 | 460 | |