mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
unlink url for burn on reading, handle it in js
This commit is contained in:
parent
09fb700923
commit
6bf8243634
@ -141,10 +141,10 @@ class Pastes extends CI_Model
|
|||||||
|
|
||||||
if ($burn)
|
if ($burn)
|
||||||
{
|
{
|
||||||
echo 'copy this URL, it will become invalid on visit: <a href="' . site_url('view/' . $data['pid']) . '">' . site_url('view/' . $data['pid']) . '</a>';
|
echo 'copy this URL, it will become invalid on visit: ' . site_url('view/' . $data['pid']);
|
||||||
if ($data['snipurl'] !== false)
|
if ($data['snipurl'] !== false)
|
||||||
{
|
{
|
||||||
echo '<br>Shorturl: <a href="' . $shorturl . '">' . $shorturl . '</a><br>';
|
echo '<br>Shorturl: ' . $shorturl . '">' . $shorturl . '<br>';
|
||||||
}
|
}
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
@ -151,6 +151,8 @@ ST.crypto = function() {
|
|||||||
if (redirect_url.indexOf('E_CAPTCHA') > -1) {
|
if (redirect_url.indexOf('E_CAPTCHA') > -1) {
|
||||||
$('.container .message').remove();
|
$('.container .message').remove();
|
||||||
$('.container:eq(1)').prepend('<div class="message error"><div class="container">The captcha is incorrect.</div></div>');
|
$('.container:eq(1)').prepend('<div class="message error"><div class="container">The captcha is incorrect.</div></div>');
|
||||||
|
} else if (redirect_url.indexOf('invalid') > -1) {
|
||||||
|
$('#create_encrypted').parent().html('<p>' + redirect_url + '#' + key + '</p>');
|
||||||
} else {
|
} else {
|
||||||
window.location.href = base_url + redirect_url + '#' + key;
|
window.location.href = base_url + redirect_url + '#' + key;
|
||||||
}
|
}
|
||||||
|
@ -180,6 +180,8 @@ ST.crypto = function() {
|
|||||||
if (redirect_url.indexOf('E_CAPTCHA') > -1) {
|
if (redirect_url.indexOf('E_CAPTCHA') > -1) {
|
||||||
$('.content .container .message').remove();
|
$('.content .container .message').remove();
|
||||||
$('.content .container').prepend('<div class="message error"><div class="container">The captcha is incorrect.</div></div>');
|
$('.content .container').prepend('<div class="message error"><div class="container">The captcha is incorrect.</div></div>');
|
||||||
|
} else if (redirect_url.indexOf('invalid') > -1) {
|
||||||
|
$('#create_encrypted').parent().html('<p>' + redirect_url + '#' + key + '</p>');
|
||||||
} else {
|
} else {
|
||||||
window.location.href = base_url + redirect_url + '#' + key;
|
window.location.href = base_url + redirect_url + '#' + key;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user