Sorry for having to get 3.2.1 up to speed so fast, but I wanted to get
the security fix out right away. Here's quick patches to the latest
release.
First as for the & symbol in the links. This is a result of the recent
changes in how BoltWire escapes things. To reverse this, and fix the
bug, comment out this line, engine.php 1801
// BOLTreplace('&', '&');
It has the interesting effect of doing what Hans has been arguing for
with , but we lose xhtml compliance in some situations, and we
do get some of our old quirky behavior back. But Hans made good
points. I'm hoping we can find other ways to solve those problems...
As for the messages not showing--it seems to only happen when you have
==[messages]== in the skin. Even an extra space should fix it.
==[messages] == is a workaround. But the fix is to go to BOLTdomarkup
(engine.php ~730) and comment out this line.
// if ($content == '[messages]' && $BOLTmsgOut == '') return;
By the way, the way we fixed the messages to get the cool new
functionalities was something I tried to do once before but couldn't
get the wiring right. This time we seem to have it! In particular, we
should be able to output regular messages in markup functions now with
no problem. Just did some testing. Very exciting!!!
Try this function in config.php just for kicks. I'll be tweaking it
more and reviewing all our existing functions when I get time.
function BOLTFmsg($args, $zone='') {
global $BOLTsession;
$BOLTsession['MSG']['msg_form']['hi'] = 'Hello!';
}
Cheers,
Dan
P.S. I also put out 3.2.3 if you care to download the new version
rather than patch the code. We really need to figure out for sure what
to do about our numbering system... :) 3.18 (3.2) didn't stay stable
for very long, did it?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---