Task #0002219: Compatibilité PHP 8.2 , 8.1 , 8.0
This commit is contained in:
parent
bc11c12efd
commit
935e8a4d96
2 changed files with 2 additions and 2 deletions
|
|
@ -1545,7 +1545,7 @@ function noalyss_strlentrim($p_string) :int {
|
|||
}
|
||||
function noalyss_str_replace($search,$replace,$string) {
|
||||
if ($string===null) return "";
|
||||
else return str_replace($search,$replace,$string);
|
||||
else return str_replace($search,$replace??"",$string);
|
||||
}
|
||||
function noalyss_bcsub($p_first,$p_second)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ EOF;
|
|||
function input() {
|
||||
ob_start();
|
||||
$v=$this->input->get_value();
|
||||
$v=html_entity_decode($v);
|
||||
$v=html_entity_decode($v??"");
|
||||
if ( $this->input instanceof ITextarea) {
|
||||
echo '<span class="" id="'.$this->input->id.'edit" >';
|
||||
echo '<pre class="field_follow_up">';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue