Skip to content

Commit

Permalink
Release 7.18
Browse files Browse the repository at this point in the history
  • Loading branch information
fwolf-ilias committed Feb 1, 2023
1 parent d4fda41 commit 1e63134
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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.17 2022-12-21");
define("ILIAS_VERSION_NUMERIC", "7.17"); // since version ILIAS 6 this must be always x.y: x and y are numbers
define("ILIAS_VERSION", "7.18 2023-02-01");
define("ILIAS_VERSION_NUMERIC", "7.18"); // 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.9/MathJax.js?config=TeX-AMS-MML_HTMLorMML,Safe')));
'module' => array('text', 'MathJax'), 'keyword' => array('text', 'path_to_mathjax'), 'value' => array('clob', 'https://cdn.jsdelivr.net/npm/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', '92')));
'module' => array('text', 'common'), 'keyword' => array('text', 'db_hotfixes_7'), 'value' => array('clob', '93')));

$ilDB->insert("settings", array(
'module' => array('text', 'adve'), 'keyword' => array('text', 'autosave'), 'value' => array('clob', '30')));
Expand Down
10 changes: 5 additions & 5 deletions setup/sql/ilias3.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-- MySQL dump 10.19 Distrib 10.3.34-MariaDB, for debian-linux-gnu (x86_64)
-- MySQL dump 10.19 Distrib 10.3.36-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: ilias_release
-- ------------------------------------------------------
-- Server version 10.3.34-MariaDB-0+deb10u1
-- Server version 10.3.36-MariaDB-0+deb10u2

--
-- Table structure for table `acc_access_key`
Expand Down 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.9/MathJax.js?config=TeX-AMS-MML_HTMLorMML,Safe');
INSERT INTO `settings` VALUES ('MathJax','path_to_mathjax','https://cdn.jsdelivr.net/npm/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','92');
INSERT INTO `settings` VALUES ('common','db_hotfixes_7','93');
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-12-21 17:21:59
-- Dump completed on 2023-02-01 15:14:27

0 comments on commit 1e63134

Please sign in to comment.