The XOOPS Development Team is pleased to announce the release of
XOOPS 2.5.12-Beta-8What's Changed• language fixes by @mambax7 in #1550
• copyright update by @mambax7 in #1551
• fix Admin help toggle by @mambax7 in #1553
• fix for Admin users search by @mambax7 in #1554
• Bootstrap 5.3.7 by @mambax7 in #1557
• Feature/updates by @mambax7 in #1555
• Fix Deprecated addSlashes by @GregMage in #1566
• Fix: #1564 by @GregMage in #1565
• Hide empty userinfo value by @GregMage in #1568
• User Search Issue #1559 by @mambax7 in #1560
• add abstract methods for error(), errorno(), query() to XoopsDatabase by @mambax7 in #1571
• cosmetics by @mambax7 in #1570
• Criteria cleanup by @mambax7 in #1572
• cleanup mailer by @mambax7 in #1574
• update XMF by @mambax7 in #1573
Please help make XOOPS better by testing and
reporting any issues!
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.
You can grab the current master here:
https://github.com/XOOPS/XoopsCore25/archive/master.zipFull Changelog: [url=https://github.com/XOOPS/XoopsCore25/compare/v2.5.12_Beta-7...v2.5.12_Beta-8[/url]
Request to remove debug code in XoopsFormElement
The line `echo $this->getFormType();` at line 431 in
XoopsCore25/htdocs/class/xoopsform/formelement.php appears to be debug code
that outputs the form type to the page.
This causes issues when extending XoopsFormText to create custom form elements
with HTML5 input types (e.g., type="color" or type="number"). When setFormType()
is called in these custom classes, the type name is inadvertently displayed on
the rendered page.
Suggest removing this echo statement as it doesn't serve any functional purpose
in production code.