From b09fc6ca0d5e735323fd622004f2a17446e4783d Mon Sep 17 00:00:00 2001
From: thewilkybarkid <chriswilkinson84@gmail.com>
Date: Wed, 9 Oct 2013 09:16:35 +0100
Subject: [PATCH] Use booleans

---
 src/cambridge_base.inc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/cambridge_base.inc b/src/cambridge_base.inc
index ddbdab6..c4b38b0 100644
--- a/src/cambridge_base.inc
+++ b/src/cambridge_base.inc
@@ -77,18 +77,18 @@ function cambridge_base_install() {
       'name' => st('Basic Page'),
       'base' => 'node_content',
       'description' => st("Use <em>basic pages</em> for your static content, such as an 'About us' page."),
-      'custom' => 1,
-      'modified' => 1,
-      'locked' => 0,
+      'custom' => TRUE,
+      'modified' => TRUE,
+      'locked' => FALSE,
     ),
     array(
       'type' => 'link',
       'name' => st('Link'),
       'base' => 'node_content',
       'description' => st("Use <em>link</em> to add custom links to lists, such as teasers or carousels."),
-      'custom' => 1,
-      'modified' => 1,
-      'locked' => 0,
+      'custom' => TRUE,
+      'modified' => TRUE,
+      'locked' => FALSE,
       'title_label' => 'Administrative title',
     ),
   );
-- 
GitLab