Skip to content

Commit

Permalink
Release 7.15
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolf-ilias committed Nov 9, 2022
1 parent 4d9ffe6 commit be28324
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions include/inc.ilias_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
*
* @package ilias-core
*/
define("ILIAS_VERSION", "7.14 2022-09-26");
define("ILIAS_VERSION_NUMERIC", "7.14"); // since version ILIAS 6 this must be always x.y: x and y are numbers
define("ILIAS_VERSION", "7.15 2022-11-09");
define("ILIAS_VERSION_NUMERIC", "7.15"); // since version ILIAS 6 this must be always x.y: x and y are numbers
4 changes: 2 additions & 2 deletions setup/sql/ilDBTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -48594,7 +48594,7 @@ function setupILIASDatabase()
'module' => array('text', 'lucene_adv_search'), 'keyword' => array('text', 'lom_version'), 'value' => array('clob', '0')));

$ilDB->insert("settings", array(
'module' => array('text', 'MathJax'), 'keyword' => array('text', 'path_to_mathjax'), 'value' => array('clob', 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML')));
'module' => array('text', 'MathJax'), 'keyword' => array('text', 'path_to_mathjax'), 'value' => array('clob', 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.9/MathJax.js?config=TeX-AMS-MML_HTMLorMML,Safe')));

$ilDB->insert("settings", array(
'module' => array('text', 'mobs'), 'keyword' => array('text', 'file_manager_always'), 'value' => array('clob', '')));
Expand Down Expand Up @@ -48777,7 +48777,7 @@ function setupILIASDatabase()
'module' => array('text', 'common'), 'keyword' => array('text', 'inst_id'), 'value' => array('clob', '0')));

$ilDB->insert("settings", array(
'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '91')));
'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '92')));

$ilDB->insert("settings", array(
'module' => array('text', 'adve'), 'keyword' => array('text', 'autosave'), 'value' => array('clob', '30')));
Expand Down
6 changes: 3 additions & 3 deletions setup/sql/ilias3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20353,7 +20353,7 @@ INSERT INTO `settings` VALUES ('lucene_adv_search','lom_structure','0');
INSERT INTO `settings` VALUES ('lucene_adv_search','lom_taxon','0');
INSERT INTO `settings` VALUES ('lucene_adv_search','lom_user_role','0');
INSERT INTO `settings` VALUES ('lucene_adv_search','lom_version','0');
INSERT INTO `settings` VALUES ('MathJax','path_to_mathjax','https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML');
INSERT INTO `settings` VALUES ('MathJax','path_to_mathjax','https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.9/MathJax.js?config=TeX-AMS-MML_HTMLorMML,Safe');
INSERT INTO `settings` VALUES ('mobs','file_manager_always','');
INSERT INTO `settings` VALUES ('mobs','mep_activate_pages','1');
INSERT INTO `settings` VALUES ('mobs','restricted_file_types','');
Expand Down Expand Up @@ -20412,7 +20412,7 @@ INSERT INTO `settings` VALUES ('common','soap_connect_timeout','0');
INSERT INTO `settings` VALUES ('common','rpc_server_host','');
INSERT INTO `settings` VALUES ('common','rpc_server_port','0');
INSERT INTO `settings` VALUES ('common','inst_id','0');
INSERT INTO `settings` VALUES ('common','db_hotfixes_7','91');
INSERT INTO `settings` VALUES ('common','db_hotfixes_7','92');
INSERT INTO `settings` VALUES ('adve','autosave','30');
INSERT INTO `settings` VALUES ('common','rep_favourites','1');

Expand Down Expand Up @@ -25024,4 +25024,4 @@ CREATE TABLE `xmlvalue_seq` (



-- Dump completed on 2022-09-26 15:46:01
-- Dump completed on 2022-11-09 16:20:16

0 comments on commit be28324

Please sign in to comment.