We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4edffc2 commit 2854948Copy full SHA for 2854948
front/ticketmail.form.php
@@ -21,7 +21,7 @@
21
22
if ($result = $DB->query($query)) {
23
if ($DB->numrows($result) > 0) {
24
- $row = $DB->fetch_assoc($result);
+ $row = $result->fetch_assoc();
25
$mmail->setFrom($row['email'], $row['firstname'].' '.$row['realname']);
26
}
27
setup.php
@@ -2,7 +2,7 @@
2
3
define('TICKETMAIL_VERSION', '3.5.0');
4
define('TICKETMAIL_MIN_GLPI_VERSION', '9.4');
5
-define('TICKETMAIL_MAX_GLPI_VERSION', '9.6');
+define('TICKETMAIL_MAX_GLPI_VERSION', '11.0');
6
if (!defined("PLUGIN_TICKETMAIL_DIR")) {
7
define("PLUGIN_TICKETMAIL_DIR", Plugin::getPhpDir("ticketmail"));
8
0 commit comments