Catch Entries: 15 |
additional | Struct (ordered) | SQL | string | DECLARE @PageSize int = 6;
DECLARE @Page int = 2;
DECLARE @OfferCount int = (
SELECT
COUNT(*) AS nCount
FROM
TM_WPsys.dbo.Content
inner join TM_WPsys.dbo.Content_Categories_Rel ON Content_Categories_Rel.nContentId = Content.nContentID
and Content_Categories_Rel.nCategoryId = 72
WHERE
Content.nSupplierID = 1726
AND nPageTypeID = 24
AND (
dPublishStart <= {ts '2025-10-21 07:21:06'}
OR dPublishStart IS NULL
)
);
DECLARE @Pages int = @OfferCount / @PageSize;
IF @OfferCount % @PageSize != 0
SET @Pages = @Pages + 1;
DECLARE @PageStartIndex int = ((@Page-1) * @PageSize)+1;
DECLARE @PageEndIndex int = @Page * @PageSize;
SELECT
*,
@Page AS nPage,
@Pages AS nPages
FROM
(
SELECT
Content.nContentId,
Content.sUrl,
Content.sHeadline,
Content.sFeaturedImageURL,
ISNUll(Content.dWPCreated, Content.dCreated) AS dCreated,
ISNULL(Content.dWPUpdated, Content.dUpdated) AS dUpdated,
rowindex = ROW_NUMBER() OVER (ORDER BY ISNULL(Content.dWPCreated,Content.dCreated) DESC)
FROM
TM_WPsys.dbo.Content
inner join TM_WPsys.dbo.Content_Categories_Rel ON Content_Categories_Rel.nContentId = Content.nContentID
and Content_Categories_Rel.nCategoryId = 72
WHERE
Content.nSupplierID = 1726
AND Content.nPageTypeID = 24
AND (
Content.dPublishStart <= {ts '2025-10-21 07:21:06'}
OR Content.dPublishStart IS NULL
)
) vOffers
WHERE
rowindex >= @PageStartIndex
AND rowindex <= @PageEndIndex
ORDER BY
rowindex |
| DatabaseName | string | Microsoft SQL Server |
| DatabaseVersion | | DriverName | string | Microsoft JDBC Driver 12.2 for SQL Server |
| DriverVersion | | Datasource | |
|
DataSource | |
Detail | |
ErrorCode | |
Extended_Info | |
ExtendedInfo | |
Message | string | Transaction (Process ID 221) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction. |
|
NativeErrorCode | |
queryError | string | DECLARE @PageSize int = 6;
DECLARE @Page int = 2;
DECLARE @OfferCount int = (
SELECT
COUNT(*) AS nCount
FROM
TM_WPsys.dbo.Content
inner join TM_WPsys.dbo.Content_Categories_Rel ON Content_Categories_Rel.nContentId = Content.nContentID
and Content_Categories_Rel.nCategoryId = 72
WHERE
Content.nSupplierID = 1726
AND nPageTypeID = 24
AND (
dPublishStart <= {ts '2025-10-21 07:21:06'}
OR dPublishStart IS NULL
)
);
DECLARE @Pages int = @OfferCount / @PageSize;
IF @OfferCount % @PageSize != 0
SET @Pages = @Pages + 1;
DECLARE @PageStartIndex int = ((@Page-1) * @PageSize)+1;
DECLARE @PageEndIndex int = @Page * @PageSize;
SELECT
*,
@Page AS nPage,
@Pages AS nPages
FROM
(
SELECT
Content.nContentId,
Content.sUrl,
Content.sHeadline,
Content.sFeaturedImageURL,
ISNUll(Content.dWPCreated, Content.dCreated) AS dCreated,
ISNULL(Content.dWPUpdated, Content.dUpdated) AS dUpdated,
rowindex = ROW_NUMBER() OVER (ORDER BY ISNULL(Content.dWPCreated,Content.dCreated) DESC)
FROM
TM_WPsys.dbo.Content
inner join TM_WPsys.dbo.Content_Categories_Rel ON Content_Categories_Rel.nContentId = Content.nContentID
and Content_Categories_Rel.nCategoryId = 72
WHERE
Content.nSupplierID = 1726
AND Content.nPageTypeID = 24
AND (
Content.dPublishStart <= {ts '2025-10-21 07:21:06'}
OR Content.dPublishStart IS NULL
)
) vOffers
WHERE
rowindex >= @PageStartIndex
AND rowindex <= @PageEndIndex
ORDER BY
rowindex |
|
Sql | string | DECLARE @PageSize int = 6;
DECLARE @Page int = 2;
DECLARE @OfferCount int = (
SELECT
COUNT(*) AS nCount
FROM
TM_WPsys.dbo.Content
inner join TM_WPsys.dbo.Content_Categories_Rel ON Content_Categories_Rel.nContentId = Content.nContentID
and Content_Categories_Rel.nCategoryId = 72
WHERE
Content.nSupplierID = 1726
AND nPageTypeID = 24
AND (
dPublishStart <= {ts '2025-10-21 07:21:06'}
OR dPublishStart IS NULL
)
);
DECLARE @Pages int = @OfferCount / @PageSize;
IF @OfferCount % @PageSize != 0
SET @Pages = @Pages + 1;
DECLARE @PageStartIndex int = ((@Page-1) * @PageSize)+1;
DECLARE @PageEndIndex int = @Page * @PageSize;
SELECT
*,
@Page AS nPage,
@Pages AS nPages
FROM
(
SELECT
Content.nContentId,
Content.sUrl,
Content.sHeadline,
Content.sFeaturedImageURL,
ISNUll(Content.dWPCreated, Content.dCreated) AS dCreated,
ISNULL(Content.dWPUpdated, Content.dUpdated) AS dUpdated,
rowindex = ROW_NUMBER() OVER (ORDER BY ISNULL(Content.dWPCreated,Content.dCreated) DESC)
FROM
TM_WPsys.dbo.Content
inner join TM_WPsys.dbo.Content_Categories_Rel ON Content_Categories_Rel.nContentId = Content.nContentID
and Content_Categories_Rel.nCategoryId = 72
WHERE
Content.nSupplierID = 1726
AND Content.nPageTypeID = 24
AND (
Content.dPublishStart <= {ts '2025-10-21 07:21:06'}
OR Content.dPublishStart IS NULL
)
) vOffers
WHERE
rowindex >= @PageStartIndex
AND rowindex <= @PageEndIndex
ORDER BY
rowindex |
|
SQLState | |
StackTrace | string | lucee.runtime.exp.DatabaseException: Transaction (Process ID 221) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:265)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1695)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(SQLServerPreparedStatement.java:620)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(SQLServerPreparedStatement.java:539)
at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:7685)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:4048)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:272)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:246)
at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.execute(SQLServerPreparedStatement.java:516)
at lucee.runtime.type.util.QueryUtil.execute(QueryUtil.java:353)
at lucee.runtime.type.QueryImpl.execute(QueryImpl.java:302)
at lucee.runtime.type.QueryImpl.<init>(QueryImpl.java:239)
at lucee.runtime.tag.Query.executeDatasoure(Query.java:1125)
at lucee.runtime.tag.Query._doEndTag(Query.java:692)
at lucee.runtime.tag.Query.doEndTag(Query.java:557)
at functions.pageparts.pageparts_helper_cfc$cf.udfCall(/rejsesiden/functions/pageparts/pageparts_helper.cfc:174)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:811)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at functions.pageparts.appoffers_cfc$cf.udfCall(/rejsesiden/functions/pageparts/appoffers.cfc:152)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:731)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:604)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:2110)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at functions.shortcodes_cfc$cf.udfCall2(/tm2022/functions/shortcodes.cfc:227)
at functions.shortcodes_cfc$cf.udfCall(/tm2022/functions/shortcodes.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:811)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at functions.shortcodes_cfc$cf.udfCall3(/tm2022/functions/shortcodes.cfc:510)
at functions.shortcodes_cfc$cf.udfCall(/tm2022/functions/shortcodes.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.callWithNamedValues(UDFImpl.java:214)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:732)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:604)
at lucee.runtime.ComponentImpl.callWithNamedValues(ComponentImpl.java:2129)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithNamedValues(VariableUtilImpl.java:858)
at lucee.runtime.PageContextImpl.getFunctionWithNamedValues(PageContextImpl.java:2113)
at templates.templates_helper_cfc$cf.udfCall1(/tm2022/templates/templates_helper.cfc:174)
at templates.templates_helper_cfc$cf.udfCall(/tm2022/templates/templates_helper.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:811)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at templates.templates_helper_cfc$cf.udfCall1(/rejsesiden/templates/templates_helper.cfc:101)
at templates.templates_helper_cfc$cf.udfCall(/rejsesiden/templates/templates_helper.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:811)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at templates.templates_helper_cfc$cf.udfCall1(/rejsesiden/templates/templates_helper.cfc:43)
at templates.templates_helper_cfc$cf.udfCall(/rejsesiden/templates/templates_helper.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:811)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at templates.default2_cfc$cf.udfCall(/rejsesiden/templates/default2.cfc:29)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:731)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:604)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:2110)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at functions.pagehandler_cfc$cf.udfCall7(/tm2022/functions/pagehandler.cfc:778)
at functions.pagehandler_cfc$cf.udfCall(/tm2022/functions/pagehandler.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.type.scope.UndefinedImpl.call(UndefinedImpl.java:811)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at functions.pagehandler_cfc$cf.udfCall6(/tm2022/functions/pagehandler.cfc:538)
at functions.pagehandler_cfc$cf.udfCall(/tm2022/functions/pagehandler.cfc)
at lucee.runtime.type.UDFImpl.implementation(UDFImpl.java:112)
at lucee.runtime.type.UDFImpl._call(UDFImpl.java:357)
at lucee.runtime.type.UDFImpl.call(UDFImpl.java:224)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:731)
at lucee.runtime.ComponentImpl._call(ComponentImpl.java:604)
at lucee.runtime.ComponentImpl.call(ComponentImpl.java:2110)
at lucee.runtime.util.VariableUtilImpl.callFunctionWithoutNamedValues(VariableUtilImpl.java:773)
at lucee.runtime.PageContextImpl.getFunction(PageContextImpl.java:2081)
at index_cfm$cf.call(/index.cfm:178)
at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:1118)
at lucee.runtime.PageContextImpl._doInclude(PageContextImpl.java:1012)
at lucee.runtime.listener.ModernAppListener._onRequest(ModernAppListener.java:213)
at lucee.runtime.listener.MixedAppListener.onRequest(MixedAppListener.java:41)
at lucee.runtime.PageContextImpl.execute(PageContextImpl.java:2816)
at lucee.runtime.PageContextImpl._execute(PageContextImpl.java:2803)
at lucee.runtime.PageContextImpl.executeCFML(PageContextImpl.java:2774)
at lucee.runtime.engine.Request.exe(Request.java:45)
at lucee.runtime.engine.CFMLEngineImpl._service(CFMLEngineImpl.java:1113)
at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(CFMLEngineImpl.java:1070)
at lucee.loader.engine.CFMLEngineWrapper.serviceCFML(CFMLEngineWrapper.java:97)
at lucee.loader.servlet.CFMLServlet.service(CFMLServlet.java:51)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1789)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Unknown Source)
|
|
TagContext | Array Rows: 11 | 1 | Struct | codePrintHTML | string | 172: WHERE<br>
173: rowindex >= @PageStartIndex<br>
<b>174: AND rowindex <= @PageEndIndex</b><br>
175: ORDER BY<br>
176: rowindex<br>
|
| codePrintPlain | string | 172: WHERE
173: rowindex >= @PageStartIndex
174: AND rowindex <= @PageEndIndex
175: ORDER BY
176: rowindex
|
| column | | id | | line | | Raw_Trace | string | functions.pageparts.pageparts_helper_cfc$cf.udfCall(/rejsesiden/functions/pageparts/pageparts_helper.cfc:174) |
| template | string | /mnt/webfiles/Rejsesiden_dk/functions/pageparts/pageparts_helper.cfc |
| type | |
| 2 | Struct | codePrintHTML | string | 150: <cftry><br>
151: <cfscript><br>
<b>152: var aOffers = getOffers(arguments.sAttributes);</b><br>
153: <br>
154: var sReturn = {<br>
|
| codePrintPlain | string | 150: <cftry>
151: <cfscript>
152: var aOffers = getOffers(arguments.sAttributes);
153:
154: var sReturn = {
|
| column | | id | | line | | Raw_Trace | string | functions.pageparts.appoffers_cfc$cf.udfCall(/rejsesiden/functions/pageparts/appoffers.cfc:152) |
| template | string | /mnt/webfiles/Rejsesiden_dk/functions/pageparts/appoffers.cfc |
| type | |
| 3 | Struct | codePrintHTML | string | 225: <br>
226: if(sValidateAttributes.status == 'ok') {<br>
<b>227: sShortCodeData = getPagePartsInstance(arguments.sShortCode).getData(sLocalAttributes);</b><br>
228: <br>
229: if(sShortCodeData.status == 'ok') {<br>
|
| codePrintPlain | string | 225:
226: if(sValidateAttributes.status == 'ok') {
227: sShortCodeData = getPagePartsInstance(arguments.sShortCode).getData(sLocalAttributes);
228:
229: if(sShortCodeData.status == 'ok') {
|
| column | | id | | line | | Raw_Trace | string | functions.shortcodes_cfc$cf.udfCall2(/tm2022/functions/shortcodes.cfc:227) |
| template | string | /mnt/webfiles/Travelmarket_2011/tm2022/functions/shortcodes.cfc |
| type | |
| 4 | Struct | codePrintHTML | string | 508: timerStart("shortCodeHasData_#arguments.sShortCode.sGroup1#", "template");<br>
509: <br>
<b>510: var sShortCodeData = getShortCodeData(arguments.sShortCode.sGroup0, arguments.sShortCode.sGroup1, arguments.sShortCode.sGroup2);</b><br>
511: <br>
512: timerStop("shortCodeHasData_#arguments.sShortCode.sGroup1#", "template");<br>
|
| codePrintPlain | string | 508: timerStart("shortCodeHasData_#arguments.sShortCode.sGroup1#", "template");
509:
510: var sShortCodeData = getShortCodeData(arguments.sShortCode.sGroup0, arguments.sShortCode.sGroup1, arguments.sShortCode.sGroup2);
511:
512: timerStop("shortCodeHasData_#arguments.sShortCode.sGroup1#", "template");
|
| column | | id | | line | | Raw_Trace | string | functions.shortcodes_cfc$cf.udfCall3(/tm2022/functions/shortcodes.cfc:510) |
| template | string | /mnt/webfiles/Travelmarket_2011/tm2022/functions/shortcodes.cfc |
| type | |
| 5 | Struct | codePrintHTML | string | 172: <br>
173: if(!structKeyExists(sShortCodeSettings, 'data') || (structKeyExists(sShortCodeSettings, 'data') && sShortCodeSettings.data)) {<br>
<b>174: if(this.oShortCodes.shortCodeHasData(sShortCodeTag=sShortCodeTag)) {</b><br>
175: writeOutput(sShortCodeTag);<br>
176: }<br>
|
| codePrintPlain | string | 172:
173: if(!structKeyExists(sShortCodeSettings, 'data') || (structKeyExists(sShortCodeSettings, 'data') && sShortCodeSettings.data)) {
174: if(this.oShortCodes.shortCodeHasData(sShortCodeTag=sShortCodeTag)) {
175: writeOutput(sShortCodeTag);
176: }
|
| column | | id | | line | | Raw_Trace | string | templates.templates_helper_cfc$cf.udfCall1(/tm2022/templates/templates_helper.cfc:174) |
| template | string | /mnt/webfiles/Travelmarket_2011/tm2022/templates/templates_helper.cfc |
| type | |
| 6 | Struct | codePrintHTML | string | 99: <br>
100: default:<br>
<b>101: writeShortCode(variables.sContentItem);</b><br>
102: break;<br>
103: }<br>
|
| codePrintPlain | string | 99:
100: default:
101: writeShortCode(variables.sContentItem);
102: break;
103: }
|
| column | | id | | line | | Raw_Trace | string | templates.templates_helper_cfc$cf.udfCall1(/rejsesiden/templates/templates_helper.cfc:101) |
| template | string | /mnt/webfiles/Rejsesiden_dk/templates/templates_helper.cfc |
| type | |
| 7 | Struct | codePrintHTML | string | 41: switch(variables.sContentItem) {<br>
42: default:<br>
<b>43: defaultShortCodeHandling(variables.sContentItem);</b><br>
44: break;<br>
45: }<br>
|
| codePrintPlain | string | 41: switch(variables.sContentItem) {
42: default:
43: defaultShortCodeHandling(variables.sContentItem);
44: break;
45: }
|
| column | | id | | line | | Raw_Trace | string | templates.templates_helper_cfc$cf.udfCall1(/rejsesiden/templates/templates_helper.cfc:43) |
| template | string | /mnt/webfiles/Rejsesiden_dk/templates/templates_helper.cfc |
| type | |
| 8 | Struct | codePrintHTML | string | 27: <cfif structKeyExists(this.sPageSettings.contentorder, "middle") AND arrayLen(this.sPageSettings.contentorder.middle) NEQ 0><br>
28: <section class="boxed"><br>
<b>29: <cfset defaultContentOrderHandling("middle")></b><br>
30: </section><br>
31: </cfif><br>
|
| codePrintPlain | string | 27: <cfif structKeyExists(this.sPageSettings.contentorder, "middle") AND arrayLen(this.sPageSettings.contentorder.middle) NEQ 0>
28: <section class="boxed">
29: <cfset defaultContentOrderHandling("middle")>
30: </section>
31: </cfif>
|
| column | | id | | line | | Raw_Trace | string | templates.default2_cfc$cf.udfCall(/rejsesiden/templates/default2.cfc:29) |
| template | string | /mnt/webfiles/Rejsesiden_dk/templates/default2.cfc |
| type | |
| 9 | Struct | codePrintHTML | string | 776: }<br>
777: <br>
<b>778: sHTML = oTemplate.getHTML();</b><br>
779: <br>
780: timerStop('template', 'buildPageContent');<br>
|
| codePrintPlain | string | 776: }
777:
778: sHTML = oTemplate.getHTML();
779:
780: timerStop('template', 'buildPageContent');
|
| column | | id | | line | | Raw_Trace | string | functions.pagehandler_cfc$cf.udfCall7(/tm2022/functions/pagehandler.cfc:778) |
| template | string | /mnt/webfiles/Travelmarket_2011/tm2022/functions/pagehandler.cfc |
| type | |
| 10 | Struct | codePrintHTML | string | 536: <br>
537: if(arguments.bBuildPageContent) {<br>
<b>538: this.sPageContent = buildPageContent();</b><br>
539: }<br>
540: <br>
|
| codePrintPlain | string | 536:
537: if(arguments.bBuildPageContent) {
538: this.sPageContent = buildPageContent();
539: }
540:
|
| column | | id | | line | | Raw_Trace | string | functions.pagehandler_cfc$cf.udfCall6(/tm2022/functions/pagehandler.cfc:538) |
| template | string | /mnt/webfiles/Travelmarket_2011/tm2022/functions/pagehandler.cfc |
| type | |
| 11 | Struct | codePrintHTML | string | 176: case 'content':<br>
177: variables.oTimer.start('setPageData');<br>
<b>178: variables.oPageHandler.setPageData();</b><br>
179: variables.oTimer.stop('setPageData');<br>
180: <br>
|
| codePrintPlain | string | 176: case 'content':
177: variables.oTimer.start('setPageData');
178: variables.oPageHandler.setPageData();
179: variables.oTimer.stop('setPageData');
180:
|
| column | | id | | line | | Raw_Trace | string | index_cfm$cf.call(/index.cfm:178) |
| template | string | /mnt/webfiles/Rejsesiden_dk/index.cfm |
| type | |
|
|
type | |
where | |