Actions
Bug #15783
closedString concatenation mistake in class.browse_link.php
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)
Updated by Maxime Alexandre over 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