Project

General

Profile

Actions

Bug #15783

closed

String concatenation mistake in class.browse_link.php

Added by Maxime Alexandre about 18 years ago. Updated almost 18 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2006-03-08
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.0
PHP Version:
5
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

In the file "typo3/class.browse_link.php"
line 962 :
- thePreviewWindow = window.open('.$BACK_PATH.'"show_item.php?table=...
+ thePreviewWindow = window.open('.$BACK_PATH.'show_item.php?table=...

The " character must be deleted.

(issue imported from #M2794)

Actions #1

Updated by Maxime Alexandre about 18 years ago

Sorry, but it's not a deletion of the " character, but a move of it :
- thePreviewWindow = window.open('.$BACK_PATH.'"show_item.php?table=...
+ thePreviewWindow = window.open("'.$BACK_PATH.'show_item.php?table=...

The $BACK_PATH is now INSIDE the "..."

Actions

Also available in: Atom PDF