NAVIGATION
This shows you the differences between two versions of the page.
deutsch:ersetzer_rts:frontend_render:ext_popup [2009/09/09 08:25] Knut Heermann (flip-flop) |
deutsch:ersetzer_rts:frontend_render:ext_popup [2018/06/03 18:09] (current) |
||
---|---|---|---|
Line 16: | Line 16: | ||
**Bedingung:** ##$phpwcms['allow_ext_render'] = 1;## -> [[http://www.phpwcms-docu.de/confincphp_de.phtml|/config/phpwcms/conf.inc.php]] | **Bedingung:** ##$phpwcms['allow_ext_render'] = 1;## -> [[http://www.phpwcms-docu.de/confincphp_de.phtml|/config/phpwcms/conf.inc.php]] | ||
+ | |||
+ | Update KH 07.05.2010: Linkausführung <a href="....." bei Klick unterdrückt | ||
---- | ---- | ||
Line 32: | Line 34: | ||
phpWCMS Version: >= 1.3.3 | phpWCMS Version: >= 1.3.3 | ||
- | modified: 01.11.2008 | + | modified: KH 01.11.2008 |
- | last modified: -- | + | last modified: KH 07.05.2010: Suppressed link execution <a href="....." |
Description: | Description: | ||
Line 70: | Line 72: | ||
function MM_openBrWindow(theURL,winName,features) { //v2.0 | function MM_openBrWindow(theURL,winName,features) { //v2.0 | ||
window.open(theURL,winName,features); | window.open(theURL,winName,features); | ||
+ | return false; | ||
} | } | ||
//--> | //--> | ||
Line 87: | Line 90: | ||
// The replace parameter **** | // The replace parameter **** | ||
- | $my_replace = '<a href="#" onClick="MM_openBrWindow(\'$1\',\'New_window\',\'scrollbars=yes,resizable=yes,width=$2,height=$3\')">$4</a>'; | + | $my_replace = '<a href="#" onClick="return MM_openBrWindow(\'$1\',\'New_window\',\'scrollbars=yes,resizable=yes,width=$2,height=$3\')">$4</a>'; |
// And do it ====== | // And do it ====== |