diff --git a/commerce_cheque.module b/commerce_cheque.module
index f7a3768..d4283f2 100644
--- a/commerce_cheque.module
+++ b/commerce_cheque.module
@@ -199,9 +199,11 @@ function commerce_cheque_settings_form($settings = NULL) {
 function commerce_cheque_submit_form($payment_method, $pane_values, $checkout_pane, $order) {
   $form = array();
 
-  $form['commerce_cheque_description'] = array(
-    '#markup' => $payment_method['settings']['information']
-  );
+  if (!empty($payment_method['settings']['information'])) {
+    $form['commerce_cheque_description'] = array(
+      '#markup' => $payment_method['settings']['information']
+    );
+  }
   
   // Need to create a dummy value to solve http://drupal.org/node/1230666
   // Probably an issue in the main commerce module
