diff options
author | friendica <info@friendica.com> | 2013-09-03 01:57:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-03 01:57:11 -0700 |
commit | 0be8e4061c42372a60e0274e7947edcb81625eaa (patch) | |
tree | 0c00759b9a9d73bdc31950377bdf66860b5a5919 /boot.php | |
parent | 9d262a186f4d7532d74f2eced4959372a9b7f392 (diff) | |
download | volse-hubzilla-0be8e4061c42372a60e0274e7947edcb81625eaa.tar.gz volse-hubzilla-0be8e4061c42372a60e0274e7947edcb81625eaa.tar.bz2 volse-hubzilla-0be8e4061c42372a60e0274e7947edcb81625eaa.zip |
testing Comanche
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -2452,10 +2452,9 @@ function construct_page(&$a) { foreach($a->layout as $k => $v) { if((strpos($k,'region_') === 0) && strlen($v)) { if(strpos($v,'$region_') !== false) { - $v = preg_replace_callback('/\$region_([a-zA-Z0-9]*?)/ism','comanche_replace_region',$v); - + $v = preg_replace_callback('/\$region_([a-zA-Z0-9]+)/ism','comanche_replace_region',$v); } - $a->data[substr($k,0,7)] = $v; + $a->page[substr($k,7)] = $v; } } } |