You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -67,7 +70,7 @@ function _kalatheme_load_dependencies() {
67
70
$panels = TRUE;
68
71
}
69
72
}
70
-
if (!$panels) {
73
+
if (!$panels && $display_errors) {
71
74
drupal_set_message(t('Kalatheme requires at least Panels 3.4.'), 'error');
72
75
}
73
76
@@ -82,7 +85,7 @@ function _kalatheme_load_dependencies() {
82
85
$jq = TRUE;
83
86
}
84
87
}
85
-
if (!$jq) {
88
+
if (!$jq && $display_errors) {
86
89
drupal_set_message(t('Kalatheme requires a 2.x version of JQuery Update that uses at least JQuery 1.7'), 'error');
87
90
}
88
91
@@ -116,7 +119,7 @@ function _kalatheme_load_dependencies() {
116
119
$boot = TRUE;
117
120
}
118
121
}
119
-
if (!$boot) {
122
+
if (!$boot && $display_errors) {
120
123
drupal_set_message(t('You do not have a Bootstrap library installed but that is ok! To get equipped either check out our <a href="@setup_guide">Start Up Guide</a> or run our <a href="@setup_url">Setup Wizard.</a>', array(
0 commit comments