Initial work on new UI

This commit is contained in:
Fabio Comuni 2011-07-22 17:37:51 +02:00
parent 6b806708d9
commit 93eda9d9c1
12 changed files with 761 additions and 12 deletions

View file

@ -166,6 +166,9 @@
$s = preg_replace_callback('/\|\|([0-9]+)\|\|/', array($this, "_replcb_node"), $s);
if ($s==Null) $this->_preg_error();
// remove comments block
$s = preg_replace('/{#[^#]*#}/', "" , $s);
// replace strings recursively (limit to 10 loops)
$os = ""; $count=0;
while($os!=$s && $count<10){