Closed (fixed)
Project:
Browscap
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
3 Sep 2012 at 02:45 UTC
Updated:
20 Sep 2012 at 19:31 UTC
The upgrades defined in the .install must return an array of error, empty array if no errors.
Index: browscap/browscap.install
===================================================================
--- browscap/browscap.install (revision 8132)
+++ browscap/browscap.install (working copy)
@@ -153,4 +153,6 @@
$browscap_monitor = variable_get('browscap_monitor', FALSE);
variable_set('browscap_enable_user_agent_log', $browscap_monitor);
variable_del('browscap_monitor');
+
+ return array();
}
Comments
Comment #1
devin carlson commentedThis is now fixed by 64ee354.
I've followed core's example and returned an array which designates that the update was successful and provides some simple text.