Skip to content

Commit 360ceea

Browse files
committed
Upgrade Installer
Installer was dropping new 14.3 columns data as these columns did not exist in module.xml schema. Modify schema to include all columns, including legacy columns, and then move data prior to modifying schema.
1 parent 0dec441 commit 360ceea

File tree

7 files changed

+1030
-84
lines changed

7 files changed

+1030
-84
lines changed

Sccp_manager.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,9 +675,9 @@ private function findInstLangs() {
675675
*/
676676

677677
private function initializeTFtpLanguagePath() {
678-
$dir = $this->sccppath["tftp_lang_path"];
678+
//$dir = $this->sccppath["tftp_lang_path"];
679679
foreach ($this->extconfigs->getExtConfig('sccp_lang') as $langKey => $langValueArr) {
680-
$localeDir = $dir . DIRECTORY_SEPARATOR . $langValueArr['locale'];
680+
$localeDir = $this->sccppath["tftp_lang_path"] . DIRECTORY_SEPARATOR . $langValueArr['locale'];
681681
if (!is_dir($localeDir)) {
682682
if (!mkdir($localeDir, 0755, true)) {
683683
die("Error creating $localeDir directory");

0 commit comments

Comments
 (0)