feproc does not replace the substitution variables(e.g. ${area:name}) correctly.
Here's a fix that has worked for me:
( pnuserapi.php, line 1032: )
// Do string replacements from the form data.
if (is_array($handlerinfo['form']))
{
foreach ($handlerinfo['form'] as $itemName => $itemValue)
{
//modified by Payman
//corrected the RegExp
$attrValue = preg_replace("'\\\$\\{form:$itemName\\}'i", $itemValue, $attrValue);
}
}
// Do string replacements from the system data.
if (is_array($handlerinfo['system']))
{
foreach ($handlerinfo['system'] as $itemName => $itemValue)
{
//modified by Payman
//corrected the RegExp
$attrValue = preg_replace("'\\\$\\{system:$itemName\\}'i", $itemValue, $attrValue);
}
}
// Do string replacements from the links data.
if (is_array($handlerinfo['links']))
{
foreach ($handlerinfo['links'] as $itemName => $itemValue)
{
//modified by Payman
//corrected the RegExp
$attrValue = preg_replace("'\\\$\\{link:$itemName\\}'i", $itemValue, $attrValue);
}
}
Hope that helps someone someday!
Cheers!
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- internetking created topic »password problem« 25. May
- mesteele101 responded to »ERR (3): E_USER_ERROR: Smarty error: [in pagesvar:pagesitem2en line XXX]…« 25. May
- mazdev responded to »Pages 2.5.0 and updating - Page not found« 25. May
- ehdwma created topic »Hide "Register new account" and change template to 3 col« 25. May
- mesteele101 responded to »Zikula 1.3.3 - Selecting a category in Pages not working« 25. May
- mdee created topic »How to implement returnpage ?« 25. May
- nestormateo responded to »Fillters in Clip« 24. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
