Commit 0795221
committed
minor #12504 Escape backslash before string termination (greg0ire)
This PR was submitted for the master branch but it was merged into the 4.3 branch instead (closes #12504).
Discussion
----------
Escape backslash before string termination
To php, `'App\'` looks like a string that contains a quote and is not finished. Using `\\`, the only escape sequence that works within single quotes, should fix the issue.
This was introduced in 2a5b114 , which is only present on the master branch at the time, that's why I'm targetting master.
Commits
-------
e92115e Escape backslash before string termination1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
176 | 176 | | |
177 | 177 | | |
178 | 178 | | |
179 | | - | |
| 179 | + | |
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
| |||
250 | 250 | | |
251 | 251 | | |
252 | 252 | | |
253 | | - | |
| 253 | + | |
254 | 254 | | |
255 | 255 | | |
256 | 256 | | |
| |||
0 commit comments