Changeset View
Changeset View
Standalone View
Standalone View
branches/5.2.x/core/kernel/application.php
Show First 20 Lines • Show All 359 Lines • ▼ Show 20 Line(s) | |||||
if ( defined('DEBUG_MODE') && $this->isDebugMode() ) { | if ( defined('DEBUG_MODE') && $this->isDebugMode() ) { | ||||
$this->Debugger->appendTimestamp('Processed AfterConfigRead'); | $this->Debugger->appendTimestamp('Processed AfterConfigRead'); | ||||
} | } | ||||
if ( $this->GetVar('m_cat_id') === false ) { | if ( $this->GetVar('m_cat_id') === false ) { | ||||
$this->SetVar('m_cat_id', 0); | $this->SetVar('m_cat_id', 0); | ||||
} | } | ||||
if ( !$this->RecallVar('curr_iso') ) { | if ( !$this->RecallVar('curr_iso') && !(defined('IS_INSTALL') && IS_INSTALL) ) { | ||||
$this->StoreVar('curr_iso', $this->GetPrimaryCurrency(), true); // true for optional | $this->StoreVar('curr_iso', $this->GetPrimaryCurrency(), true); // true for optional | ||||
} | } | ||||
$visit_id = $this->RecallVar('visit_id'); | $visit_id = $this->RecallVar('visit_id'); | ||||
if ( $visit_id !== false ) { | if ( $visit_id !== false ) { | ||||
$this->SetVar('visits_id', $visit_id); | $this->SetVar('visits_id', $visit_id); | ||||
} | } | ||||
▲ Show 20 Lines • Show All 2703 Lines • Show Last 20 Lines |