Skip to content

Commit

Permalink
Fix issue with deploy mapping.
Browse files Browse the repository at this point in the history
Missed a portion of the array storing/altering that caused deploy not to merge in properly.
  • Loading branch information
mastacontrola committed Jan 2, 2017
1 parent 3fb6ae0 commit 2f83461
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/web/lib/fog/fogbase.class.php
Expand Up @@ -2236,10 +2236,11 @@ public static function fastmerge($array1)
if (is_numeric($key)) {
$array1[] = $oth;
continue;
} else {
$array1[$key] = $oth;
}
unset($oth);
}
$array1 += $other;
unset($other);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/web/lib/fog/system.class.php
Expand Up @@ -53,7 +53,7 @@ private static function _versionCompare()
public function __construct()
{
self::_versionCompare();
define('FOG_VERSION', '1.3.1-RC-1');
define('FOG_VERSION', '2');
define('FOG_SCHEMA', 244);
define('FOG_BCACHE_VER', 111);
define('FOG_SVN_REVISION', 6052);
Expand Down
2 changes: 1 addition & 1 deletion packages/web/management/languages/messages.pot
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-02 15:06-0500\n"
"POT-Creation-Date: 2017-01-02 15:54-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down

0 comments on commit 2f83461

Please sign in to comment.