Skip to content

Commit 385f8a4

Browse files
committed
Fix links with GLPI
Bump version
1 parent f32f56d commit 385f8a4

4 files changed

Lines changed: 9 additions & 1 deletion

File tree

hook.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ function plugin_tasklists_install()
125125
}
126126
}
127127
$DB->runFile(PLUGIN_TASKLISTS_DIR . "/sql/update-2.1.0.sql");
128+
129+
$DB->runFile(PLUGIN_TASKLISTS_DIR . "/sql/update-2.1.4.sql");
128130
// Add record notification
129131
call_user_func([NotificationTargetTask::class, 'install']);
130132

setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
use GlpiPlugin\Tasklists\Ticket;
3737
use GlpiPlugin\Tasklists\Task;
3838

39-
define('PLUGIN_TASKLISTS_VERSION', '2.1.3');
39+
define('PLUGIN_TASKLISTS_VERSION', '2.1.4');
4040

4141
if (!defined("PLUGIN_TASKLISTS_DIR")) {
4242
define("PLUGIN_TASKLISTS_DIR", Plugin::getPhpDir("tasklists"));

sql/update-2.1.4.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
UPDATE `glpi_documents_items` SET `itemtype` = 'GlpiPlugin\\Tasklists\\Task' WHERE `itemtype` = 'PluginTasklistsTask';

tasklists.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
<author>Infotel</author>
2626
</authors>
2727
<versions>
28+
<version>
29+
<num>2.1.4</num>
30+
<compatibility>~11.0</compatibility>
31+
<download_url>https://github.com/InfotelGLPI/tasklists/releases/download/2.1.4/glpi-tasklists-2.1.4.tar.bz2</download_url>
32+
</version>
2833
<version>
2934
<num>2.1.3</num>
3035
<compatibility>~11.0</compatibility>

0 commit comments

Comments
 (0)