You are not logged in.
Pages: 1
Even on the example site install, tags for a page and/or "wonders" module are not retaining their tags, and it doesn't seem to be writing to the database either.
The great wisdom of the docs has yielded no answers. What setting have I forgotten, oh people of the Big Tree?
Offline
Nice find! This is a bug that has been successfully squashed in the beta 2 release.
If you're feeling adventurous you can fix it your self. Open up core/inc/bigtree/admin.php in your favorite text editor and look for the createTag() function. The issue is that the object $cms is out of scope and needs to be globalized:
// Change:
function createTag($tag) {
$tag = strtolower(html_entity_decode($tag));
// To:
function createTag($tag) {
global $cms;
$tag = strtolower(html_entity_decode($tag));
Offline
Rejoice! The humble hero levels up. Ovations for the swiftness of The Big Tree bug squash.
Offline
This bug should be fixed in the 4.0 beta 2 release that is now available for download.
Offline
Pages: 1