- replacement of " by '

This commit is contained in:
Uwe Tews
2017-11-20 12:26:48 +01:00
parent fcf108b33f
commit 40ea5d89da
7 changed files with 33 additions and 32 deletions
@@ -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);