mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
allowing for parameter strings starting with &
This commit is contained in:
parent
177c9d7114
commit
f1df27f46c
@ -115,9 +115,9 @@ jQuery.PrivateBin = function($, sjcl, Base64, RawDeflate) {
|
|||||||
{
|
{
|
||||||
var parameterHash = {};
|
var parameterHash = {};
|
||||||
var parameterArray = parameterString.split('&');
|
var parameterArray = parameterString.split('&');
|
||||||
if (parameterArray[0] != '') {
|
for (var i = 0; i < parameterArray.length; i++)
|
||||||
for (var i = 0; i < parameterArray.length; i++)
|
{
|
||||||
{
|
if (parameterArray[i] != '') {
|
||||||
var pair = parameterArray[i].split('=');
|
var pair = parameterArray[i].split('=');
|
||||||
var key = decodeURIComponent(pair[0]);
|
var key = decodeURIComponent(pair[0]);
|
||||||
var value = decodeURIComponent(pair[1]);
|
var value = decodeURIComponent(pair[1]);
|
||||||
|
@ -4,7 +4,7 @@ var jsc = require('jsverify');
|
|||||||
before(function () {
|
before(function () {
|
||||||
this.jsdom = require('jsdom-global')();
|
this.jsdom = require('jsdom-global')();
|
||||||
global.$ = global.jQuery = require('./jquery-3.1.1');
|
global.$ = global.jQuery = require('./jquery-3.1.1');
|
||||||
global.sjcl = require('./sjcl-1.0.4');
|
global.sjcl = require('./sjcl-1.0.6');
|
||||||
global.Base64 = require('./base64-2.1.9');
|
global.Base64 = require('./base64-2.1.9');
|
||||||
global.RawDeflate = require('./rawdeflate-0.5');
|
global.RawDeflate = require('./rawdeflate-0.5');
|
||||||
require('./rawinflate-0.3');
|
require('./rawinflate-0.3');
|
||||||
|
@ -69,7 +69,7 @@ if ($MARKDOWN):
|
|||||||
<?php
|
<?php
|
||||||
endif;
|
endif;
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-QZEnEp9v6HlbXEk7sCcLLWxC9mkIaoK5LIX9bp5UxYQG7q/wDPZvcAP0nwr51BXlDTG4fAeSjVsLpSAxGNdBxw==" crossorigin="anonymous"></script>
|
<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-beT6rKtLu5r1n//Inx7Itv4vXYH5+1ZVG5EMk4LaWU37s7L7PrRVarqlvpESseZGlvvJ8mFJMnePh/2RjGnyLA==" crossorigin="anonymous"></script>
|
||||||
<!--[if lt IE 10]>
|
<!--[if lt IE 10]>
|
||||||
<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
|
<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
@ -47,7 +47,7 @@ if ($MARKDOWN):
|
|||||||
<?php
|
<?php
|
||||||
endif;
|
endif;
|
||||||
?>
|
?>
|
||||||
<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-QZEnEp9v6HlbXEk7sCcLLWxC9mkIaoK5LIX9bp5UxYQG7q/wDPZvcAP0nwr51BXlDTG4fAeSjVsLpSAxGNdBxw==" crossorigin="anonymous"></script>
|
<script type="text/javascript" src="js/privatebin.js?<?php echo rawurlencode($VERSION); ?>" integrity="sha512-beT6rKtLu5r1n//Inx7Itv4vXYH5+1ZVG5EMk4LaWU37s7L7PrRVarqlvpESseZGlvvJ8mFJMnePh/2RjGnyLA==" crossorigin="anonymous"></script>
|
||||||
<!--[if lt IE 10]>
|
<!--[if lt IE 10]>
|
||||||
<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
|
<style type="text/css">body {padding-left:60px;padding-right:60px;} #ienotice {display:block;} #oldienotice {display:block;}</style>
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
|
Loading…
Reference in New Issue
Block a user