We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have enclosed Haste to the Votebox extension of Yanick and stumble across the following error:
Line number 652 <form action="' . $this->action . '" id="' . $this->strFormId . '" enctype="' . ($this->hasUploads ? 'multipart/form-data' : 'application/x-www-form-urlencoded') . '" method="' . $this->method . '">
<form action="' . $this->action . '" id="' . $this->strFormId . '" enctype="' . ($this->hasUploads ? 'multipart/form-data' : 'application/x-www-form-urlencoded') . '" method="' . $this->method . '">
Browser output: <form action="" id="vb_new_idea" enctype="application/x-www-form-urlencoded" method="post">
<form action="" id="vb_new_idea" enctype="application/x-www-form-urlencoded" method="post">
Bad value for attribute action on element form: Must be non-empty.
Any URL. For example: /hello, #canvas, or http://example.org/. Characters should be represented in NFC and spaces should be escaped as %20.
The text was updated successfully, but these errors were encountered:
Fixed the wrong setting of action (see #13).
a74a310
5490966
No branches or pull requests
I have enclosed Haste to the Votebox extension of Yanick and stumble across the following error:
Line number 652
<form action="' . $this->action . '" id="' . $this->strFormId . '" enctype="' . ($this->hasUploads ? 'multipart/form-data' : 'application/x-www-form-urlencoded') . '" method="' . $this->method . '">
Browser output:
<form action="" id="vb_new_idea" enctype="application/x-www-form-urlencoded" method="post">
Bad value for attribute action on element form: Must be non-empty.
Any URL. For example: /hello, #canvas, or http://example.org/. Characters should be represented in NFC and spaces should be escaped as %20.
The text was updated successfully, but these errors were encountered: