Skip to content
Snippets Groups Projects
Commit 0ed106f7 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #79082 : fix multiple update

parent f96ca04a
Branches
Tags
6 merge requests!2890Master,!2889Master,!2888Master,!2887Master,!2878Dev#79082 explo amelioration du force https,!2873Dev#79082 explo amelioration du force https
Pipeline #5264 passed with stage
in 28 minutes and 2 seconds
......@@ -117,10 +117,8 @@ class Admin_UrlManagerController extends ZendAfi_Controller_Action {
public function testUrlAction() {
session_write_close();
if (!$url = urldecode($this->_getParam('url'))) {
$this->_helper->notify($this->_('Url inexistante'));
if (!$url = urldecode($this->_getParam('url')))
return $this->_redirectClose($this->view->url(['action' => 'index']));
}
$view_renderer = $this->getHelper('ViewRenderer');
......
......@@ -36,7 +36,8 @@ class Class_UrlManager_Description {
$url = $instance->getUrl();
return $view->tagAnchor($url,
$instance->getUrl(),
['title' => $url]);
['class' => 'url',
'title' => $url]);
})
->addColumn($this->_('Répond ?'),
......
......@@ -40,4 +40,12 @@
top: 0;
color: var(--nav-text);
cursor: pointer;
}
#url-manager-wrapper td > a.url {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 400px;
}
\ No newline at end of file
......@@ -65,13 +65,13 @@
function convertSelectedToHttps() {
setTimeout(function() {openLoadingModal();}, 0);
abortAjax();
ajax.push($('[data-selected-status="1"]').each(function() {
$.ajax({
$('[data-selected-status="1"]').each(function() {
ajax.push($.ajax({
url : $(this).attr('data-convert'),
type : "GET",
dataType : "html"
});
}));
}));
});
$.when.apply(null, ajax).then(function() {
window.location.reload();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment