Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -83,6 +83,8 @@ |
84 | 84 | public $editFormTextAfterWarn; |
85 | 85 | public $editFormTextAfterTools; |
86 | 86 | public $editFormTextBottom; |
| 87 | + public $editFormTextAfterContent; |
| 88 | + public $previewTextAfterContent; |
87 | 89 | |
88 | 90 | /* $didSave should be set to true whenever an article was succesfully altered. */ |
89 | 91 | public $didSave = false; |
— | — | @@ -106,6 +108,8 @@ |
107 | 109 | $this->editFormTextAfterWarn = |
108 | 110 | $this->editFormTextAfterTools = |
109 | 111 | $this->editFormTextBottom = |
| 112 | + $this->editFormTextAfterContent = |
| 113 | + $this->previewTextAfterContent = |
110 | 114 | $this->mPreloadText = ""; |
111 | 115 | } |
112 | 116 | |
— | — | @@ -1547,6 +1551,8 @@ |
1548 | 1552 | END |
1549 | 1553 | ); |
1550 | 1554 | $this->showTextbox1( $classes ); |
| 1555 | + |
| 1556 | + $wgOut->addHTML( $this->editFormTextAfterContent ); |
1551 | 1557 | |
1552 | 1558 | $wgOut->wrapWikiMsg( "<div id=\"editpage-copywarn\">\n$1\n</div>", $copywarnMsg ); |
1553 | 1559 | $wgOut->addHTML( <<<END |
— | — | @@ -1870,7 +1876,7 @@ |
1871 | 1877 | $wgOut->parse( $note ) . $conflict . "</div>\n"; |
1872 | 1878 | |
1873 | 1879 | wfProfileOut( __METHOD__ ); |
1874 | | - return $previewhead . $previewHTML; |
| 1880 | + return $previewhead . $previewHTML . $this->previewTextAfterContent; |
1875 | 1881 | } |
1876 | 1882 | |
1877 | 1883 | function getTemplates() { |