diff --git a/custom_breadcrumbs.module b/custom_breadcrumbs.module
index 815875a..6f1a7b6 100644
--- a/custom_breadcrumbs.module
+++ b/custom_breadcrumbs.module
@@ -93,7 +93,7 @@ function custom_breadcrumbs_menu() {
     'file' => 'custom_breadcrumbs.admin.inc',
     'type' => MENU_CALLBACK,
   );
- 
+
   $items['admin/config/user-interface/custom-breadcrumbs'] = array(
     'title' => 'Custom breadcrumbs settings',
     'description' => 'Manage sitewide configuration settings to customize the breadcrumb trail.',
@@ -244,7 +244,7 @@ function custom_breadcrumbs_form_node_form_alter(&$form, $form_state) {
       $output = '<p>' . t('Custom breadcrumbs have not been created for this %type page. Use the <a href="@link">Custom Breadcrumbs Administration Page</a> to create a breadcrumb.', array('%type' => $node->type, '@link' => url('admin/structure/custom_breadcrumbs'))) . '</p>';
       $form['custom_breadcrumbs']['help_text'] = array('#markup' => $output);
     }
- 
+
   }
 }
 
@@ -708,7 +708,12 @@ function custom_breadcrumbs_load_breadcrumbs($module, $table = NULL, $param = ar
       $query = db_select($info['table'], 'c')->fields('c');
       if ($p = !empty($param)) {
         foreach ($param as $key => $value) {
-          $query->condition($key, $value);
+          if ($key == 'specific_path') {
+            $query->where("'$value' LIKE $key");
+          }
+          else {
+            $query->condition($key, $value);
+          }
           $cond_string[] = $key . '_' . $value;
         }
       }
