diff --git a/setup/itopdesignformat.class.inc.php b/setup/itopdesignformat.class.inc.php index 1e326f61a..faa718a70 100644 --- a/setup/itopdesignformat.class.inc.php +++ b/setup/itopdesignformat.class.inc.php @@ -79,6 +79,12 @@ class iTopDesignFormat '1.6' => array( 'previous' => '1.5', 'go_to_previous' => 'From16To15', + 'next' => '1.7', + 'go_to_next' => 'From16To17', + ), + '1.7' => array( + 'previous' => '1.6', + 'go_to_previous' => 'From17To16', 'next' => null, 'go_to_next' => null, ), @@ -665,6 +671,26 @@ class iTopDesignFormat $this->RemoveNodeFromXPath($sPath); } + /** + * @param $oFactory + * + * @return void (Errors are logged) + */ + protected function From16To17($oFactory) + { + // nothing changed ! + } + + /** + * @param $oFactory + * + * @return void (Errors are logged) + */ + protected function From17To16($oFactory) + { + // nothing changed ! + } + private function RemoveNodeFromXPath($sPath) { $oXPath = new DOMXPath($this->oDocument);