*** empty log message ***

This commit is contained in:
andrey
2001-02-12 16:01:55 +00:00
parent 0b5da4185e
commit e9ce45b3c2
4 changed files with 14 additions and 2 deletions

View File

@@ -1187,7 +1187,7 @@ class Smarty
function _parse_modifiers(&$output, $modifier_string)
{
$qstr_regexp = '"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"|\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\'';
preg_match_all('!\|@?(\w+)((?>:(?:'. $qstr_regexp . '|[^|]+))*)!', '|' . $modifier_string, $match);
preg_match_all('!\|(@?\w+)((?>:(?:'. $qstr_regexp . '|[^|]+))*)!', '|' . $modifier_string, $match);
list(, $modifiers, $modifier_arg_strings) = $match;
for ($i = 0; $i < count($modifiers); $i++) {

View File

@@ -3,6 +3,9 @@
<PRE>
{$Name}
{$Name}
{* bold and title are read from the config file *}
{if #bold#}<b>{/if}
{* capitalize the first letters of each word of the title *}
@@ -46,6 +49,8 @@ testing strip tags
</table>
{/strip}
</PRE>
This is an example of the html_select_date function:
</PRE>
@@ -61,3 +66,4 @@ This is an example of the html_options function:
{html_options values=$option_values selected=$option_selected output=$option_output}
</select>
</form>

View File

@@ -1187,7 +1187,7 @@ class Smarty
function _parse_modifiers(&$output, $modifier_string)
{
$qstr_regexp = '"[^"\\\\]*(?:\\\\.[^"\\\\]*)*"|\'[^\'\\\\]*(?:\\\\.[^\'\\\\]*)*\'';
preg_match_all('!\|@?(\w+)((?>:(?:'. $qstr_regexp . '|[^|]+))*)!', '|' . $modifier_string, $match);
preg_match_all('!\|(@?\w+)((?>:(?:'. $qstr_regexp . '|[^|]+))*)!', '|' . $modifier_string, $match);
list(, $modifiers, $modifier_arg_strings) = $match;
for ($i = 0; $i < count($modifiers); $i++) {

View File

@@ -3,6 +3,9 @@
<PRE>
{$Name}
{$Name}
{* bold and title are read from the config file *}
{if #bold#}<b>{/if}
{* capitalize the first letters of each word of the title *}
@@ -46,6 +49,8 @@ testing strip tags
</table>
{/strip}
</PRE>
This is an example of the html_select_date function:
</PRE>
@@ -61,3 +66,4 @@ This is an example of the html_options function:
{html_options values=$option_values selected=$option_selected output=$option_output}
</select>
</form>