Другая интерпретация реестра

This commit is contained in:
CORP\phedor 2018-04-20 18:03:39 +03:00
parent 40fad0e75b
commit aaa9c2e1bf
21 changed files with 156 additions and 92 deletions

View file

@ -29,7 +29,7 @@ class Top extends Composite {
private function groupFiles(array $list, $debugMode = true)
{
$debug = ($debugMode) ? 'debug=1' : '';
$path = parse_url(WWW_PATH, PHP_URL_PATH);
$path = parse_url($this->config->get('system', 'web'), PHP_URL_PATH);
$groups = array();
$use = array();
@ -120,7 +120,7 @@ class Top extends Composite {
$this->set('deps', implode(",", array_values($this->require)));
$this->set('title', $this->getTitle());
$this->set('jspath', enableHttps(WWW_PATH));
$this->set('jspath', enableHttps($this->config->get('system', 'web')));
//
return $this->execute(); // execute+phptal ??
}