xhtml
authorx2000habouzit <x2000habouzit>
Thu, 26 Aug 2004 09:40:57 +0000 (09:40 +0000)
committerx2000habouzit <x2000habouzit>
Thu, 26 Aug 2004 09:40:57 +0000 (09:40 +0000)
htdocs/fiche.php
include/applis.func.inc.php

index 2987485..8d5070c 100644 (file)
@@ -189,7 +189,7 @@ $result = mysql_query("SELECT text, url
 $gxs = "";
 while (list($gxt,$gxu) = mysql_fetch_row($result)) {
         if ($gxs) $gxs .= ", ";
-        if ($gxu) $gxs .= "<a target=\"_blank\" href=\"$gxu\">";
+        if ($gxu) $gxs .= "<a href=\"$gxu\" onclick=\"return popup(this)\">";
         $gxs .= $gxt;
         if ($gxu) $gxs .= "</a>";
 } 
index 018ecd3..5eddbcb 100644 (file)
@@ -61,7 +61,7 @@ function applis_fmt($type, $text, $url) {
     if ($text!="Université") {
        if ($txt) $txt .= " ";
        if ($url) 
-           $txt .= "<a target=\"_blank\" href=\"$url\">$text</a>";
+           $txt .= "<a href=\"$url\" onclick=\"return popup(this)\">$text</a>";
        else 
            $txt .= $text;
     }