mirror of
https://github.com/smarty-php/smarty.git
synced 2026-04-29 02:03:31 +02:00
- replacement of " by '
This commit is contained in:
@@ -9,7 +9,6 @@ class TPC_yyStackEntry
|
||||
** is the value of the token */
|
||||
}
|
||||
|
||||
;
|
||||
#line 12 "../smarty/lexer/smarty_internal_configfileparser.y"
|
||||
|
||||
/**
|
||||
@@ -365,7 +364,7 @@ class Smarty_Internal_Configfileparser
|
||||
if ($tokenType > 0 && $tokenType < count($this->yyTokenName)) {
|
||||
return $this->yyTokenName[ $tokenType ];
|
||||
} else {
|
||||
return "Unknown";
|
||||
return 'Unknown';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -591,8 +590,8 @@ class Smarty_Internal_Configfileparser
|
||||
&& ($iFallback = self::$yyFallback[ $iLookAhead ]) != 0) {
|
||||
if ($this->yyTraceFILE) {
|
||||
fwrite($this->yyTraceFILE,
|
||||
$this->yyTracePrompt . "FALLBACK " .
|
||||
$this->yyTokenName[ $iLookAhead ] . " => " .
|
||||
$this->yyTracePrompt . 'FALLBACK ' .
|
||||
$this->yyTokenName[ $iLookAhead ] . ' => ' .
|
||||
$this->yyTokenName[ $iFallback ] . "\n");
|
||||
}
|
||||
return $this->yy_find_shift_action($iFallback);
|
||||
|
||||
Reference in New Issue
Block a user