Fix a small PHP warning when Slony conf parameters are not set
authorJehan-Guillaume (ioguix) de Rorthais <ioguix@free.fr>
Tue, 13 Dec 2011 23:11:20 +0000 (00:11 +0100)
committerJehan-Guillaume (ioguix) de Rorthais <ioguix@free.fr>
Thu, 29 Dec 2011 19:52:00 +0000 (20:52 +0100)
libraries/lib.inc.php

index f46b9e9aad1a1f839ef3f4035856030b41a9f866..c16c94be2d2054e98224f76b42dd59588e420dc7 100644 (file)
 
 
                // Load Slony if required
-               if ($_server_info['slony_support']) {
+               if (isset($_server_info['slony_support'])) {
                        include('./classes/plugins/Slony.php');
                        $slony = new Slony();
                }