Fix wrong code

This commit is contained in:
shikha
2018-08-31 14:13:08 +10:00
parent 1e101b1f4a
commit 7ab6002434
+2 -1
View File
@@ -206,12 +206,13 @@ tinymce.init({
username: "Jack Black",
staffid: "991234"
}
});
```
This can then be used in a template or snippet that looks like this:
```html
<p>Name: {$name}, StaffID: {$staffid}</p>
<p>Name: {$username}, StaffID: {$staffid}</p>
```
And that will be changed to: