Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
adjusted ROOT to ROOT_APP and corrected language files accordingly
  • Loading branch information
jakoch committed Aug 16, 2012
1 parent c3ccef9 commit 2379cac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Installation/Languages/English.php
Expand Up @@ -78,9 +78,9 @@ public function __construct()
$this->language['SESSION_AUTO_START'] = 'Session Autostart';
$this->language['EXTENSION_PDO_MYSQL'] = 'Extension: "pdo_mysql"';
$this->language['IS_WRITEABLE_TEMP_DIR'] = 'Useable: Temporary Directory';
$this->language['IS_WRITEABLE_CLANSUITE_ROOT'] = 'Can write: "/clansuite"';
$this->language['IS_WRITEABLE_CACHE_DIR'] = 'Can write: "/clansuite/cache"';
$this->language['IS_WRITEABLE_UPLOADS'] = 'Can write: "/uploads"';
$this->language['IS_WRITEABLE_CLANSUITE_ROOT'] = 'Can write: "/application"';
$this->language['IS_WRITEABLE_CACHE_DIR'] = 'Can write: "/application/cache"';
$this->language['IS_WRITEABLE_UPLOADS'] = 'Can write: "/application/uploads"';
$this->language['IS_READABLE_CONFIG_TEMPLATE'] = 'Can read: config-template file';
$this->language['DATE_TIMEZONE'] = 'Timezone set: "date.timezone"';

Expand Down
6 changes: 3 additions & 3 deletions Installation/Languages/German.php
Expand Up @@ -78,9 +78,9 @@ public function __construct()
$this->language['SESSION_AUTO_START'] = 'Session Autostart';
$this->language['EXTENSION_PDO_MYSQL'] = 'Erweiterung: "pdo_mysql"';
$this->language['IS_WRITEABLE_TEMP_DIR'] = 'Nutzbar: Temporäres Verzeichnis';
$this->language['IS_WRITEABLE_CLANSUITE_ROOT'] = 'Beschreibbar: "/clansuite"';
$this->language['IS_WRITEABLE_CACHE_DIR'] = 'Beschreibbar: "/clansuite/cache"';
$this->language['IS_WRITEABLE_UPLOADS'] = 'Beschreibbar: "/uploads"';
$this->language['IS_WRITEABLE_CLANSUITE_ROOT'] = 'Beschreibbar: "/application"';
$this->language['IS_WRITEABLE_CACHE_DIR'] = 'Beschreibbar: "/application/cache"';
$this->language['IS_WRITEABLE_UPLOADS'] = 'Beschreibbar: "/application/uploads"';
$this->language['IS_READABLE_CONFIG_TEMPLATE'] = 'Lesbar: Config-Vorlagedatei';
$this->language['DATE_TIMEZONE'] = 'Zeitzone eingestellt "date.timezone"';

Expand Down
6 changes: 3 additions & 3 deletions Installation/Languages/Italian.php
Expand Up @@ -78,9 +78,9 @@ public function __construct()
$this->language['SESSION_AUTO_START'] = 'Autostart Sessione';
$this->language['EXTENSION_PDO_MYSQL'] = 'Estensione: "pdo_mysql"';
$this->language['IS_WRITEABLE_TEMP_DIR'] = 'Usabile: Directory Temporanea';
$this->language['IS_WRITEABLE_CLANSUITE_ROOT'] = 'Posso Scrivere: "/clansuite"';
$this->language['IS_WRITEABLE_CACHE_DIR'] = 'Posso Scrivere: "/clansuite/cache"';
$this->language['IS_WRITEABLE_UPLOADS'] = 'Posso Scrivere: "/uploads"';
$this->language['IS_WRITEABLE_CLANSUITE_ROOT'] = 'Posso Scrivere: "/application"';
$this->language['IS_WRITEABLE_CACHE_DIR'] = 'Posso Scrivere: "/application/cache"';
$this->language['IS_WRITEABLE_UPLOADS'] = 'Posso Scrivere: "/application/uploads"';
$this->language['IS_READABLE_CONFIG_TEMPLATE'] = 'Posso Leggere: config-template file';
$this->language['DATE_TIMEZONE'] = 'Impostazione Timezone: "date.timezone"';

Expand Down
8 changes: 4 additions & 4 deletions Installation/view/step2.php
Expand Up @@ -156,13 +156,13 @@ function check_temporary_dir()
$required['is_writable_temp_dir']['actual'] = check_temporary_dir() ? 'w' : '---';
$required['is_writable_temp_dir']['status'] = check_temporary_dir() ? SETTING_TRUE : SETTING_FALSE;

// Permissions Check: write on \clansuite root
// Permissions Check: write on \application root
$required['is_writable_clansuite_root']['label'] = $language['IS_WRITEABLE_CLANSUITE_ROOT'];
$required['is_writable_clansuite_root']['expected'] = 'w';
$required['is_writable_clansuite_root']['actual'] = is_writeable(ROOT) ? 'w' : '---';
$required['is_writable_clansuite_root']['status'] = is_writeable(ROOT) ? SETTING_TRUE : SETTING_FALSE;
$required['is_writable_clansuite_root']['actual'] = is_writeable(ROOT_APP) ? 'w' : '---';
$required['is_writable_clansuite_root']['status'] = is_writeable(ROOT_APP) ? SETTING_TRUE : SETTING_FALSE;

// Permissions Check: write on \clansuite\cache
// Permissions Check: write on \application\cache
$required['is_writable_clansuite_cache']['label'] = $language['IS_WRITEABLE_CACHE_DIR'];
$required['is_writable_clansuite_cache']['expected'] = 'w';
$required['is_writable_clansuite_cache']['actual'] = is_writeable(ROOT_CACHE) ? 'w' : '---';
Expand Down

0 comments on commit 2379cac

Please sign in to comment.