I've been struggling for a while with this MOD but wanted it so much.
Finally got some time.
I took OlijO xml file and fixed the following and confirmed it working on 4.1.0pl2
Line 105: rsvp:var rsvp.comment problem
- changed to vb:var rsvp.comment
Previous
Code:
<vb:if condition="$rsvp[comment] AND $maxlength"> - <i>{rsvp:var rsvp.comment}</i></vb:if></li>
New
Code:
<vb:if condition="$rsvp[comment] AND $maxlength"> - <i>{vb:var rsvp.comment}</i></vb:if></li>
Line 359: array_lower() problem
- modified the check to ensure array_lower gets created
Previous
Code:
// define functions for array_walk, if not already defined.
if (!function_exists('array_trim') and !function_exists('array_trim')) {
function array_trim(&$item, $key)
{
$item = trim($item);
}
function array_lower(&$item, $key)
{
$item = strtolower($item);
}
}
New
Code:
// define functions for array_walk, if not already defined.
if (!function_exists('array_trim') and !function_exists('array_trim')) {
function array_trim(&$item, $key)
{
$item = trim($item);
}
}
if (!function_exists('array_lower') and !function_exists('array_lower')) {
function array_lower(&$item, $key)
{
$item = strtolower($item);
}
}
Modified File is attached.
Hope it helps some of you out.