Index: trunk/extensions/Storyboard/tags/Storysubmission/Storysubmission_body.php |
— | — | @@ -144,11 +144,11 @@ |
145 | 145 | // TODO: some sort of validation? |
146 | 146 | |
147 | 147 | $story = array( |
148 | | - 'story_author_name' => $dbw->addQuotes( $wgRequest->getText( 'name' ) ), |
149 | | - 'story_author_location' => $dbw->addQuotes( $wgRequest->getText( 'location' ) ), |
150 | | - 'story_author_occupation' => $dbw->addQuotes( $wgRequest->getText( 'occupation' ) ), |
151 | | - 'story_title' => $dbw->addQuotes( $wgRequest->getText( 'storytitle' ) ), |
152 | | - 'story_text' => $dbw->addQuotes( $wgRequest->getText( 'storytext' ) ), |
| 148 | + 'story_author_name' => $wgRequest->getText( 'name' ), |
| 149 | + 'story_author_location' => $wgRequest->getText( 'location' ), |
| 150 | + 'story_author_occupation' => $wgRequest->getText( 'occupation' ), |
| 151 | + 'story_title' => $wgRequest->getText( 'storytitle' ), |
| 152 | + 'story_text' => $wgRequest->getText( 'storytext' ), |
153 | 153 | // TODO: add other fields |
154 | 154 | ); |
155 | 155 | |