Ignore:
Timestamp:
07/07/22 08:51:44 (22 months ago)
Author:
frank.jaeger
Message:

ALKIS-Auskunft angepasst an PHP 8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/info/info/alkisn/alkisinlaybaurecht.php

    r427 r430  
    1515        2020-12-15 Input-Validation und Strict Comparisation (===) 
    1616        2021-12-09 2021-12-09 Neue Parameter: $katAmtMix (Kataster-Amt-Mix) 
     17        2022-07-05 PHP 8.1: Connection verwenden bei "pg_prepare" und "pg_execute", keine NULL-Werte in String-Functions verwenden 
    1718*/ 
    1819ini_set("session.cookie_httponly", 1); 
     
    6970 
    7071$v = array($gmlid); 
    71 $res = pg_prepare("", $sql); 
    72 $res = pg_execute("", $v); 
     72$res = pg_prepare($con, "", $sql); 
     73$res = pg_execute($con, "", $v); 
    7374 
    7475if (!$res) { 
Note: See TracChangeset for help on using the changeset viewer.