From a005e36e672e7997d83ff75b35c8e21cdb981c64 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 24 Sep 2008 16:13:50 +0000 Subject: [PATCH] Uncomment out needed code, PN2 not wanting to save :/ --- includes/ExternalStoreDB.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/ExternalStoreDB.php b/includes/ExternalStoreDB.php index cb3c331c5b..1cd54650ae 100644 --- a/includes/ExternalStoreDB.php +++ b/includes/ExternalStoreDB.php @@ -123,9 +123,9 @@ class ExternalStoreDB { */ function store( $cluster, $data ) { $dbw = $this->getMaster( $cluster ); - #if( !$dbw ) { - # return false; - #} + if( !$dbw ) { + return false; + } $id = $dbw->nextSequenceValue( 'blob_blob_id_seq' ); $dbw->insert( $this->getTable( $dbw ), array( 'blob_id' => $id, 'blob_text' => $data ), -- 2.20.1