By Shiny on
I keep getting this notice+error because i don't have a password required to connect to postgresql
Notice: Undefined index: pass in /var/www/drupal-4.7.0-beta4/includes/database.pgsql.inc on line 37 on line 37 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /var/www/drupal-4.7.0-beta4/includes/database.pgsql.inc:37) in /var/www/drupal-4.7.0-beta4/includes/bootstrap.inc on line 692
So i changed like 37 from this:
$url['pass'] = urldecode($url['pass']);
to
if (isset($url['pass'])) $url['pass'] = urldecode($url['pass']);