11036-Incorrectly closed quotes
This commit is contained in:
parent
8bf8542676
commit
b3f2c6cad1
|
@ -2439,7 +2439,7 @@ function ui_pagination(
|
|||
$script_modified
|
||||
);
|
||||
|
||||
$anchorHref = 'javascript: ".$script_modified.";';
|
||||
$anchorHref = 'javascript: '.$script_modified.';';
|
||||
} else {
|
||||
$anchorHref = $url.'&'.$offset_name.'='.$offset_page;
|
||||
}
|
||||
|
@ -2484,7 +2484,7 @@ function ui_pagination(
|
|||
$script_modified
|
||||
);
|
||||
|
||||
$nextHref = 'javascript: ".$script_modified.";';
|
||||
$nextHref = 'javascript: '.$script_modified.';';
|
||||
} else {
|
||||
$nextHref = $url.'&'.$offset_name.'='.$offset_next_page;
|
||||
}
|
||||
|
@ -2516,7 +2516,7 @@ function ui_pagination(
|
|||
$script_modified
|
||||
);
|
||||
|
||||
$lastHref = 'javascript: ".$script_modified.";';
|
||||
$lastHref = 'javascript: '.$script_modified.';';
|
||||
} else {
|
||||
$lastHref = $url.'&'.$offset_name.'='.$offset_lastpage;
|
||||
}
|
||||
|
|
|
@ -323,6 +323,9 @@ a.pandora_pagination {
|
|||
line-height: 35px;
|
||||
cursor: pointer;
|
||||
}
|
||||
a.pandora_pagination:first-child {
|
||||
border-left: 1px solid #cacaca;
|
||||
}
|
||||
a.pandora_pagination.next {
|
||||
border-top-right-radius: 8px;
|
||||
border-bottom-right-radius: 8px;
|
||||
|
|
Loading…
Reference in New Issue