forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 cpmFetch by vuud => Topic started by: Emilyy on July 28, 2008, 09:49:50 pm

Title: [Solved]: Doesn't Open In new window?
Post by: Emilyy on July 28, 2008, 09:49:50 pm
i looked on a page and it says to put this code to make it open in a new window:
Code: [Select]
$options = array('windowtarget' => '_blank');
I put it into my code like this
Code: [Select]
<?php
  
include "./gallery/cpmfetch/cpmfetch.php";
  
$objCpm = new cpm("./gallery/cpmfetch/cpmfetch_config.php");
$options = array('windowtarget' => '_blank');
  
$objCpm->cpm_viewLastAddedMedia(1,2);
  
$objCpm->cpm_close(); 
?>

And it doesn't open in a new window? It just opens in the iframe?
Title: Re: Doesn't Open In new window?
Post by: Nibbler on July 28, 2008, 10:06:40 pm
Should be

Code: [Select]
$objCpm->cpm_viewLastAddedMedia(1,2, $options);
Title: Re: Doesn't Open In new window?
Post by: Emilyy on July 28, 2008, 10:35:12 pm
Should be

Code: [Select]
$objCpm->cpm_viewLastAddedMedia(1,2, $options);
oh okay. it works now. thanks again!