Index: trunk/extensions/SemanticForms/specials/SF_CreateCategory.php |
— | — | @@ -97,7 +97,7 @@ |
98 | 98 | } |
99 | 99 | |
100 | 100 | $subcategory_label = wfMsg( 'sf_createcategory_makesubcategory' ); |
101 | | - $categories = SFLinkUtils::getCategoriesForArticle(); |
| 101 | + $categories = SFUtils::getCategoriesForPage(); |
102 | 102 | $sk = $wgUser->getSkin(); |
103 | 103 | $cf = SpecialPage::getPage( 'CreateForm' ); |
104 | 104 | $create_form_link = $sk->makeKnownLinkObj( $cf->getTitle(), $cf->getDescription() ); |
Index: trunk/extensions/SemanticForms/includes/SF_FormClasses.php |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | function createMarkup() { |
30 | 30 | $title = Title::makeTitle( SF_NS_FORM, $this->form_name ); |
31 | 31 | $fs = SpecialPage::getPage( 'FormStart' ); |
32 | | - $form_start_url = SFLinkUtils::titleURLString( $fs->getTitle() ) . "/" . $title->getPartialURL(); |
| 32 | + $form_start_url = SFUtils::titleURLString( $fs->getTitle() ) . "/" . $title->getPartialURL(); |
33 | 33 | $form_description = wfMsgForContent( 'sf_form_docu', $this->form_name, $form_start_url ); |
34 | 34 | $form_input = "{{#forminput:form=" . $this->form_name . "}}\n"; |
35 | 35 | $text = <<<END |
Index: trunk/extensions/SemanticForms/includes/SF_FormEditPage.php |
— | — | @@ -45,7 +45,7 @@ |
46 | 46 | protected function showContentForm() { |
47 | 47 | global $sfgIP; |
48 | 48 | $target_title = $this->mArticle->getTitle(); |
49 | | - $target_name = SFLinkUtils::titleString( $target_title ); |
| 49 | + $target_name = SFUtils::titleString( $target_title ); |
50 | 50 | if ( $target_title->exists() ) { |
51 | 51 | SFEditData::printEditForm( $this->form_name, $target_name, $this->textbox1 ); |
52 | 52 | } else { |