Index: trunk/extensions/SemanticMediaWiki/includes/jobs/SMW_UpdateJob.php |
— | — | @@ -9,9 +9,9 @@ |
10 | 10 | */ |
11 | 11 | |
12 | 12 | /** |
13 | | - * SMWUpdateJob updates the semantic data in the database for a given title |
| 13 | + * SMWUpdateJob updates the semantic data in the database for a given title |
14 | 14 | * using the MediaWiki JobQueue. Update jobs are created if, when saving an article, |
15 | | - * it is detected that the content of other pages must be re-parsed as well (e.g. |
| 15 | + * it is detected that the content of other pages must be re-parsed as well (e.g. |
16 | 16 | * due to some type change). |
17 | 17 | * |
18 | 18 | * @note This job does not update the page display or parser cache, so in general |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | */ |
25 | 25 | class SMWUpdateJob extends Job { |
26 | 26 | |
27 | | - function __construct(Title $title) { |
| 27 | + function __construct($title) { |
28 | 28 | parent::__construct( 'SMWUpdateJob', $title); |
29 | 29 | } |
30 | 30 | |