mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-24 21:04:14 +01:00
Compare commits
7 Commits
3.2.0
...
feature/76
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
851fe5abfb | ||
|
|
244ae33ad6 | ||
|
|
c1eb605195 | ||
|
|
31758cbe2b | ||
|
|
c32e186133 | ||
|
|
22141aba7b | ||
|
|
7ea7f5a967 |
@@ -338,6 +338,9 @@ HTML
|
||||
<value id="IMAP">
|
||||
<code>IMAP</code>
|
||||
</value>
|
||||
<value id="WEBHOOK">
|
||||
<code>WEBHOOK</code>
|
||||
</value>
|
||||
</values>
|
||||
<sql>scope</sql>
|
||||
<default_value>SMTP,IMAP</default_value>
|
||||
@@ -660,6 +663,9 @@ HTML
|
||||
<value id="IMAP">
|
||||
<code>IMAP</code>
|
||||
</value>
|
||||
<value id="WEBHOOK">
|
||||
<code>WEBHOOK</code>
|
||||
</value>
|
||||
</values>
|
||||
<sql>scope</sql>
|
||||
<default_value>SMTP,IMAP</default_value>
|
||||
|
||||
@@ -31,7 +31,7 @@ $.fn.modal.Constructor.prototype.enforceFocus = function () {
|
||||
var $parent = $(e.target.parentNode);
|
||||
if ($modalElement[0] !== e.target && !$modalElement.has(e.target).length &&
|
||||
!$parent.hasClass('ck-input')) {
|
||||
e.target.focus()
|
||||
$(e.target.activeElement).focus();
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
@@ -919,7 +919,7 @@ class WebPage implements Page
|
||||
|
||||
// Check if URI is absolute ("://" do allow any protocol), otherwise warn that it's a deprecated behavior
|
||||
if (false === stripos($sLinkedScriptAbsUrl, "://")) {
|
||||
IssueLog::Warning("Linked script added to page via deprecated API with a non absolute URL, it may lead to it not being loaded and causing javascript errors.", null, [
|
||||
IssueLog::Debug("Linked script added to page with a non absolute URL, it may lead to it not being loaded and causing javascript errors. See alternatives WebPage::LinkScriptFromXXX", null, [
|
||||
"linked_script_url" => $sLinkedScriptAbsUrl,
|
||||
"request_uri" => $_SERVER['REQUEST_URI'] ?? '' /* CLI */,
|
||||
]);
|
||||
@@ -1188,7 +1188,7 @@ JS;
|
||||
|
||||
// Check if URI is absolute ("://" do allow any protocol), otherwise warn that it's a deprecated behavior
|
||||
if (false === stripos($sLinkedStylesheet, "://")) {
|
||||
IssueLog::Warning("Linked stylesheet added to page via deprecated API with a non absolute URL, it may lead to it not being loaded and causing visual glitches.", null, [
|
||||
IssueLog::Debug("Linked stylesheet added to page with a non absolute URL, it may lead to it not being loaded and causing visual glitches. See alternatives WebPage::LinkStylesheetFromXXX", null, [
|
||||
"linked_stylesheet_url" => $sLinkedStylesheet,
|
||||
"request_uri" => $_SERVER['REQUEST_URI'] ?? '' /* CLI */,
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user