Revision c461ee8a
Von Moritz Bunkus vor mehr als 15 Jahren hinzugefügt
lxo-import/import_lib.php | ||
---|---|---|
302 | 302 |
$dbuser=$hits[1]; |
303 | 303 |
preg_match("/'host'[ ]*=> '(.+)'/",$tmp,$hits); |
304 | 304 |
$dbhost=($hits[1])?$hits[1]:"localhost"; |
305 |
preg_match("/'port'[ ]*=> '(.+)'/",$tmp,$hits);
|
|
305 |
preg_match("/'port'[ ]*=> '?(.+)'?/",$tmp,$hits);
|
|
306 | 306 |
$dbport=($hits[1])?$hits[1]:"5432"; |
307 | 307 |
preg_match("/[ ]*\\\$self->\{cookie_name\}[ ]*=[ ]*'(.+)'/",$tmp,$hits); |
308 | 308 |
$cookiename=$hits[1]; |
Auch abrufbar als: Unified diff
Der Wert für den Parameter 'port' steht oftmals nicht in Anführungszeichen, weil es eine Zahl ist.