From 1a225b59a8c8d95525051c1764b52585d7976c05 Mon Sep 17 00:00:00 2001 From: Moyon Camille Date: Thu, 18 Feb 2016 11:18:10 +0100 Subject: [PATCH 1/2] cleanUp: remove index & htaccess for ext: taoGroups --- .htaccess | 7 ------- index.php | 33 --------------------------------- 2 files changed, 40 deletions(-) delete mode 100755 .htaccess delete mode 100755 index.php diff --git a/.htaccess b/.htaccess deleted file mode 100755 index b960a7b..0000000 --- a/.htaccess +++ /dev/null @@ -1,7 +0,0 @@ -Options +FollowSymLinks -RewriteEngine On - -#usual behavior for resources calls -RewriteCond %{REQUEST_URI} !/views/ [NC] -#url resolving -RewriteRule ^(.*)$ index.php [L] diff --git a/index.php b/index.php deleted file mode 100755 index 3fcc456..0000000 --- a/index.php +++ /dev/null @@ -1,33 +0,0 @@ - -start(); -$bootStrap->dispatch(); -?> \ No newline at end of file From ab5cd3c821cbf4e75370e2eed1204b327a703f0a Mon Sep 17 00:00:00 2001 From: antoinerobin Date: Fri, 7 Oct 2016 16:47:01 +0200 Subject: [PATCH 2/2] bump version number --- manifest.php | 4 ++-- models/update/Updater.php | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/manifest.php b/manifest.php index 7fdae28..daac477 100755 --- a/manifest.php +++ b/manifest.php @@ -34,7 +34,7 @@ 'label' => 'Groups core extension', 'description' => 'TAO Groups extension', 'license' => 'GPL-2.0', - 'version' => '2.10.1', + 'version' => '2.10.2', 'author' => 'Open Assessment Technologies, CRP Henri Tudor', 'requires' => array( 'taoTestTaker' => '>=2.6', @@ -86,4 +86,4 @@ 'extra' => array( 'structures' => dirname(__FILE__).DIRECTORY_SEPARATOR.'controller'.DIRECTORY_SEPARATOR.'structures.xml', ) -); \ No newline at end of file +); diff --git a/models/update/Updater.php b/models/update/Updater.php index 1f28e47..a09beaa 100644 --- a/models/update/Updater.php +++ b/models/update/Updater.php @@ -65,7 +65,6 @@ public function update($initialVersion) OntologyUpdater::syncModels(); $this->setVersion('2.7.1'); } - $this->skip('2.7.1','2.10.1'); - return null; + $this->skip('2.7.1','2.10.2'); } }