Skip to content

Commit

Permalink
4.0.31b: missing zco_notifier extra_functions
Browse files Browse the repository at this point in the history
Included a zco_notifier in the install_easypopulate_4 function to ensure satisfactory installation capability.
The global $zco_notifier was missing and prevented successful installation.
  • Loading branch information
mc12345678 committed Oct 16, 2015
1 parent 079c89a commit aed7122
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
// $Id: easypopulate_4_functions.php, v4.0.31 08-01-2015 mc12345678 $
// $Id: easypopulate_4_functions.php, v4.0.31b 10-16-2015 mc12345678 $

function ep_4_curly_quotes($curly_text) {
$ep_curly_quotes = (int)EASYPOPULATE_4_CONFIG_CURLY_QUOTES;
Expand Down Expand Up @@ -1281,7 +1281,7 @@ function ep_4_query($query) {
}

function install_easypopulate_4() {
global $db;
global $db, $zco_notifier;
$project = PROJECT_VERSION_MAJOR.'.'.PROJECT_VERSION_MINOR;
if ( (substr($project,0,5) == "1.3.8") || (substr($project,0,5) == "1.3.9") ) {
$db->Execute("INSERT INTO ".TABLE_CONFIGURATION_GROUP." (configuration_group_title, configuration_group_description, sort_order, visible) VALUES ('Easy Populate 4', 'Configuration Options for Easy Populate 4', '1', '1')");
Expand Down

0 comments on commit aed7122

Please sign in to comment.