Skip to content

Commit

Permalink
Merge branch 'hotfix-10.7.35' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Feb 24, 2017
2 parents d813b44 + bcc929a commit 53e7ae7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"PresideCMS",
"version":"10.7.34",
"version":"10.7.35",
"author":"Pixl8 Interactive",
"createPackageDirectory":true,
"packageDirectory":"preside",
Expand Down
2 changes: 1 addition & 1 deletion box.json.no.deps
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"PresideCMS",
"version":"10.7.34",
"version":"10.7.35",
"author":"Pixl8 Interactive",
"createPackageDirectory":true,
"packageDirectory":"preside",
Expand Down
2 changes: 1 addition & 1 deletion support/build/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ build.number.remote.url=http://downloads.presidecms.com/presidecms/build.number

##############################
# MANUALLY UPDATE EACH VERSION
preside.version=10.7.34
preside.version=10.7.35
##############################
4 changes: 2 additions & 2 deletions system/coldboxModifications/RequestContextDecorator.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ component extends="coldbox.system.web.context.RequestContextDecorator" output=fa
var prc = getRequestContext().getCollection( private=true );

if ( arguments.siteId.len() ) {
arguments.queryString = ListAppend( arguments.queryString, "_sid=" & arguments.siteId, "&" );
arguments.queryString = ListPrepend( arguments.queryString, "_sid=" & arguments.siteId, "&" );
}

announceInterception(
Expand Down Expand Up @@ -170,7 +170,7 @@ component extends="coldbox.system.web.context.RequestContextDecorator" output=fa
arguments.linkTo = ListAppend( "admin", arguments.linkTo, "." );

if ( isActionRequest( arguments.linkTo ) ) {
arguments.queryString = ListAppend( arguments.queryString, "csrfToken=" & this.getCsrfToken(), "&" );
arguments.queryString = ListPrepend( arguments.queryString, "csrfToken=" & this.getCsrfToken(), "&" );
}

return buildLink( argumentCollection = arguments );
Expand Down

0 comments on commit 53e7ae7

Please sign in to comment.