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>
Tue, 13 Dec 2011 23:11:20 +0000 (00:11 +0100)
libraries/lib.inc.php

index d8dab7a9f17315822e6c376e064c84611e212a77..20a2b81f0363338f3ae39e84bf1a5445b0423583 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();
                }