Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

[Solved] Category is blank after upgrade Vanilla Vanilla 2.0.18

saturngodsaturngod New
edited November 2011 in Vanilla 2.0 - 2.8
I can't choose the category after upgrading 2.0.18

image

Answers

  • I use custom form in

    vanilla/view/post/discussion.php

    code is

    echo $this->Form->Label('Discussion Title', 'Name');
    echo $this->Form->TextBox('Name', array('maxlength' => 100));
    if ($this->ShowCategorySelector === TRUE) {
    echo '';
    echo $this->Form->Label('Category', 'CategoryID');
    echo $this->Form->DropDown('CategoryID', $this->CategoryData, array('TextField' => 'Name', 'ValueField' => 'CategoryID'));
    echo '';
    }
  • fixed

    echo $this->Form->CategoryDropDown('CategoryID', array('Value' => GetValue('CategoryID', $this->Category)));
Sign In or Register to comment.