This is a BETA intended for testing only. Do NOT use it in a production site.
DOWNLOAD:
If you are downloading this release for testing, please download from the current master instead.
Any bugs that have been found and fixed will be included in your testing that way, so we all won't keep finding and reporting the same bug over and over.
But Single quotes will break the html structure. R there any other ways?
Re: XOOPS 2.5.12 Beta-2 available for Testing
1) start using in all your modules Xmf\Request instead of the XoopsRequest 2) Instead of using addSlashes(), you could then do this:
use XmfRequest; // Retrieve the HTML content $html = Request::getString('html', '', 'POST');
// Sanitize the HTML input $sanitizedHtml = trim((string) XoopsFilterInput::clean($html, 'STRING'));
// Optionally escape before storing in the database $escapedHtml = $xoopsDB->escape($sanitizedHtml);
Let me know if it works for you
Re: XOOPS 2.5.12 Beta-2 available for Testing
The instruction you provided suits me well, Thank you very much. I need HTML, so I change
use Xmf\Request; $html = Request::getString('html', '', 'POST',4); // Optionally escape before storing in the database $html= $xoopsDB->escape($html);
Re: XOOPS 2.5.12 Beta-2 available for Testing
I have noticed that in this version, for the advanced member search, the EMAIL field does not display matching results.
Sanford Pharmacy: Exceptional Pharmacy Services Tailored to You
At Sanford Pharmacy, we receive as real with that healthcare have to be on hand, custom designed, and supportive. Our project is to offer the community with remarkable pharmaceutical services even as prioritizing the health and well-being of our clients. With a dedicated organization of certified pharmacists and healthcare specialists, we strive to create an environment in which sufferers experience valued and informed. We offer a sizeable variety of offerings, together with prescription remedy dispensing, over the counter merchandise, and specialised treatments. Our pharmacists are continually available to talk approximately your medicines, answer any questions, and provide guidance on a manner to manipulate your fitness effectively. We recognize that navigating the sector of medicinal drugs may be overwhelming, it's why we take some time to present an explanation for right dosages, capability facet effects, and any interactions you have to be privy to. https://www.sanfordpharmacy.com/
Re: XOOPS 2.5.12 Beta-2 available for Testing
I need POST HTML value
<p>a <a href="https://www.cadch.com" title=’Home’ target="_blank">test</a> link</p>
Because can't use $myts->addSlashes($html);
Im use XoopsRequest
My source
$html = XoopsRequest::getString('html', '', 'POST', 4);
But Single quotes will break the html structure.
R there any other ways?