Index: trunk/phase3/includes/ExternalStoreDB.php |
— | — | @@ -123,9 +123,9 @@ |
124 | 124 | */ |
125 | 125 | function store( $cluster, $data ) { |
126 | 126 | $dbw = $this->getMaster( $cluster ); |
127 | | - #if( !$dbw ) { |
128 | | - # return false; |
129 | | - #} |
| 127 | + if( !$dbw ) { |
| 128 | + return false; |
| 129 | + } |
130 | 130 | $id = $dbw->nextSequenceValue( 'blob_blob_id_seq' ); |
131 | 131 | $dbw->insert( $this->getTable( $dbw ), |
132 | 132 | array( 'blob_id' => $id, 'blob_text' => $data ), |