mtschirs
✭✭✭mtschirs ✭✭✭
Reactions
-
Re: Is Vanilla HTML4, XHTML4 or HTML5?
Throughout all of the core library, htmlspecialchars() is used with the default ENT_HTML401 which handles code as HTML 4.01. (View Post)1 -
Issue: Vanilla character encoding
All of the following can be found in the vanilla core: htmlspecialchars(..., C('Garden.Charset', 'UTF-8'))htmlspecialchars(..., 'ISO-8859-1'); // Smarty defaulthtmlspecialchars(..., 'UTF-8')htmlspeci… (View Post)1 -
Re: The Hall Of Code Curiosities
Gdn_Request::isPostBack() returns true for POST requests... Gdn_Form::isPostBack() returns true for POST ...and GET requests... Gdn_Form::isMyPostBack() does exactly the same, but states in its comme… (View Post)3 -
Is Vanilla HTML4, XHTML4 or HTML5?
It seems the library/core (Garden framework) is build to output XHTML4 code. E.g. Gdn_Form::escapeID() escapes according to (X)HTML4 specification. There are probably more such cases to be found. How… (View Post)1 -
Re: Auto-Drafts VS. Usability
Just fixed this via https://github.com/vanilla/vanilla/pull/2948 The issue was not the auto-draft feature (as I thought), but a misguided "Cache-Control: no-store" header. See the linked pu… (View Post)3