diff options
author | Brice Maron <brice@bmaron.net> | 2011-10-29 10:07:01 +0200 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-10-29 10:07:01 +0200 |
commit | a21908cf18fe139976a4eec494c0dce037c08841 (patch) | |
tree | fad2afc7aa7107b616a0df0e4d80527d6959bbc0 | |
parent | a809fe9a048d53c23bb962da5f1b133f4aac82b8 (diff) | |
download | nextcloud-server-a21908cf18fe139976a4eec494c0dce037c08841.tar.gz nextcloud-server-a21908cf18fe139976a4eec494c0dce037c08841.zip |
Change name and fix a typo
-rw-r--r-- | apps/admin_dependencies_chk/appinfo/app.php | 9 | ||||
-rw-r--r-- | apps/admin_dependencies_chk/appinfo/info.xml (renamed from apps/dependencies_chk/appinfo/info.xml) | 2 | ||||
-rw-r--r-- | apps/admin_dependencies_chk/css/style.css (renamed from apps/dependencies_chk/css/style.css) | 0 | ||||
-rw-r--r-- | apps/admin_dependencies_chk/settings.php (renamed from apps/dependencies_chk/settings.php) | 8 | ||||
-rw-r--r-- | apps/admin_dependencies_chk/templates/settings.php (renamed from apps/dependencies_chk/templates/settings.php) | 0 | ||||
-rw-r--r-- | apps/dependencies_chk/appinfo/app.php | 9 |
6 files changed, 14 insertions, 14 deletions
diff --git a/apps/admin_dependencies_chk/appinfo/app.php b/apps/admin_dependencies_chk/appinfo/app.php new file mode 100644 index 00000000000..e2169b5dd77 --- /dev/null +++ b/apps/admin_dependencies_chk/appinfo/app.php @@ -0,0 +1,9 @@ +<?php +$l=new OC_L10N('admin_dependencies_chk'); + +OC_App::register( array( + 'order' => 14, + 'id' => 'admin_dependencies_chk', + 'name' => 'Owncloud Install Info' )); + +OC_APP::registerAdmin('admin_dependencies_chk','settings'); diff --git a/apps/dependencies_chk/appinfo/info.xml b/apps/admin_dependencies_chk/appinfo/info.xml index 38a6dee2562..7216a1ee862 100644 --- a/apps/dependencies_chk/appinfo/info.xml +++ b/apps/admin_dependencies_chk/appinfo/info.xml @@ -1,6 +1,6 @@ <?xml version="1.0"?> <info> - <id>dependencies_chk</id> + <id>admin_dependencies_chk</id> <name>Owncloud dependencies info</name> <version>0.01</version> <licence>MIT</licence> diff --git a/apps/dependencies_chk/css/style.css b/apps/admin_dependencies_chk/css/style.css index 30f204be7bc..30f204be7bc 100644 --- a/apps/dependencies_chk/css/style.css +++ b/apps/admin_dependencies_chk/css/style.css diff --git a/apps/dependencies_chk/settings.php b/apps/admin_dependencies_chk/settings.php index ca609532159..a3c93964977 100644 --- a/apps/dependencies_chk/settings.php +++ b/apps/admin_dependencies_chk/settings.php @@ -20,8 +20,8 @@ * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ -$l=new OC_L10N('dependencies_chk'); -$tmpl = new OC_Template( 'dependencies_chk', 'settings'); +$l=new OC_L10N('admin_dependencies_chk'); +$tmpl = new OC_Template( 'admin_dependencies_chk', 'settings'); $modules = array(); @@ -30,7 +30,7 @@ $modules[] =array( 'status' => function_exists('json_encode') ? 'ok' : 'error', 'part'=> 'php-json', 'modules'=> array('core'), - 'message'=> $l->t('The php-json module is needed by the many application for inter communications')); + 'message'=> $l->t('The php-json module is needed by the many applications for inter communications')); $modules[] =array( 'status' => function_exists('curl_init') ? 'ok' : 'error', @@ -85,7 +85,7 @@ foreach($modules as $key => $module) { if($enabled == false) unset($modules[$key]); } -OC_UTIL::addStyle('dependencies_chk', 'style'); +OC_UTIL::addStyle('admin_dependencies_chk', 'style'); $tmpl->assign( 'items', $modules ); return $tmpl->fetchPage(); diff --git a/apps/dependencies_chk/templates/settings.php b/apps/admin_dependencies_chk/templates/settings.php index 8ff27ebb187..8ff27ebb187 100644 --- a/apps/dependencies_chk/templates/settings.php +++ b/apps/admin_dependencies_chk/templates/settings.php diff --git a/apps/dependencies_chk/appinfo/app.php b/apps/dependencies_chk/appinfo/app.php deleted file mode 100644 index dea2cd39f83..00000000000 --- a/apps/dependencies_chk/appinfo/app.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php -$l=new OC_L10N('dependencies_chk'); - -OC_App::register( array( - 'order' => 14, - 'id' => 'dependencies_chk', - 'name' => 'Owncloud Install Info' )); - -OC_APP::registerAdmin('dependencies_chk','settings'); |