You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(361) |
Oct
(65) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(798) |
Feb
(694) |
Mar
(586) |
Apr
(145) |
May
(24) |
Jun
(24) |
Jul
(56) |
Aug
(11) |
Sep
(138) |
Oct
(107) |
Nov
(58) |
Dec
(39) |
2004 |
Jan
(157) |
Feb
(24) |
Mar
(13) |
Apr
(14) |
May
(73) |
Jun
(106) |
Jul
(217) |
Aug
(91) |
Sep
(116) |
Oct
(357) |
Nov
(27) |
Dec
(272) |
2005 |
Jan
(97) |
Feb
(40) |
Mar
(167) |
Apr
(365) |
May
(344) |
Jun
(357) |
Jul
(407) |
Aug
(529) |
Sep
(204) |
Oct
(52) |
Nov
(80) |
Dec
(1) |
2006 |
Jan
(2) |
Feb
(1) |
Mar
(11) |
Apr
(112) |
May
(121) |
Jun
(86) |
Jul
(51) |
Aug
(48) |
Sep
(107) |
Oct
(20) |
Nov
(50) |
Dec
(11) |
2007 |
Jan
(7) |
Feb
(11) |
Mar
(8) |
Apr
(11) |
May
(2) |
Jun
(25) |
Jul
(67) |
Aug
(134) |
Sep
(54) |
Oct
(69) |
Nov
(10) |
Dec
(74) |
2008 |
Jan
(73) |
Feb
(81) |
Mar
(64) |
Apr
(98) |
May
(157) |
Jun
(68) |
Jul
(80) |
Aug
(108) |
Sep
(176) |
Oct
(107) |
Nov
(265) |
Dec
(60) |
2009 |
Jan
(149) |
Feb
(140) |
Mar
(195) |
Apr
(141) |
May
(53) |
Jun
(45) |
Jul
(98) |
Aug
(153) |
Sep
(160) |
Oct
(138) |
Nov
(139) |
Dec
(104) |
2010 |
Jan
(188) |
Feb
(259) |
Mar
(133) |
Apr
(104) |
May
(42) |
Jun
(121) |
Jul
(38) |
Aug
(223) |
Sep
(259) |
Oct
(255) |
Nov
(106) |
Dec
(157) |
2011 |
Jan
(202) |
Feb
(110) |
Mar
(261) |
Apr
(272) |
May
(218) |
Jun
(108) |
Jul
(141) |
Aug
(205) |
Sep
(326) |
Oct
(279) |
Nov
(368) |
Dec
(238) |
2012 |
Jan
(239) |
Feb
(3) |
Mar
|
Apr
(1) |
May
(2) |
Jun
|
Jul
(3) |
Aug
(6) |
Sep
(5) |
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
(3) |
Mar
(9) |
Apr
(10) |
May
|
Jun
(1) |
Jul
(3) |
Aug
(1) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
(1) |
2016 |
Jan
|
Feb
(1) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ok...@us...> - 2003-01-03 10:30:26
|
Update of /cvsroot/xoops/xoops2/modules/system/admin/users In directory sc8-pr-cvs1:/tmp/cvs-serv31231/modules/system/admin/users Modified Files: main.php Log Message: fixed registers_global problem Index: main.php =================================================================== RCS file: /cvsroot/xoops/xoops2/modules/system/admin/users/main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** main.php 2 Jan 2003 20:17:10 -0000 1.1 --- main.php 3 Jan 2003 10:30:21 -0000 1.2 *************** *** 34,44 **** } include_once XOOPS_ROOT_PATH."/modules/system/admin/users/users.php"; ! ! $op = !isset($op) ? 'mod_users' : $op; switch ($op) { ! case "mod_users": ! include_once XOOPS_ROOT_PATH.'/class/pagenav.php'; ! displayUsers(); ! break; case "modifyUser": modifyUser($uid); --- 34,50 ---- } include_once XOOPS_ROOT_PATH."/modules/system/admin/users/users.php"; ! if (isset($HTTP_POST_VARS)) { ! foreach ( $HTTP_POST_VARS as $k => $v ) { ! ${$k} = $v; ! } ! } ! if (isset($HTTP_GET_VARS['op'])) { ! $op = trim($HTTP_GET_VARS['op']); ! if (isset($HTTP_GET_VARS['uid'])) { ! $uid = intval($HTTP_GET_VARS['uid']); ! } ! } switch ($op) { ! case "modifyUser": modifyUser($uid); *************** *** 56,66 **** case "delete_many": xoops_cp_header(); ! $count = count($HTTP_POST_VARS['memberslist_id']); if ( $count > 0 ) { ! $list = "<a href='".XOOPS_URL."/userinfo.php?uid=".$HTTP_POST_VARS['memberslist_id'][0]."' target='_blank'>".$HTTP_POST_VARS['memberslist_uname'][$HTTP_POST_VARS['memberslist_id'][0]]."</a>"; ! $hidden = "<input type='hidden' name='memberslist_id[]' value='".$HTTP_POST_VARS['memberslist_id'][0]."' />\n"; for ( $i = 1; $i < $count; $i++ ) { ! $list .= ", <a href='".XOOPS_URL."/userinfo.php?uid=".$HTTP_POST_VARS['memberslist_id'][$i]."' target='_blank'>".$HTTP_POST_VARS['memberslist_uname'][$HTTP_POST_VARS['memberslist_id'][$i]]."</a>"; ! $hidden .= "<input type='hidden' name='memberslist_id[]' value='".$HTTP_POST_VARS['memberslist_id'][$i]."' />\n"; } echo "<div><h4>".sprintf(_AM_AYSYWTDU," ".$list." ")."</h4>"; --- 62,72 ---- case "delete_many": xoops_cp_header(); ! $count = count($memberslist_id); if ( $count > 0 ) { ! $list = "<a href='".XOOPS_URL."/userinfo.php?uid=".$memberslist_id[0]."' target='_blank'>".$memberslist_uname['memberslist_id[0]]."</a>"; ! $hidden = "<input type='hidden' name='memberslist_id[]' value='".$memberslist_id[0]."' />\n"; for ( $i = 1; $i < $count; $i++ ) { ! $list .= ", <a href='".XOOPS_URL."/userinfo.php?uid=".$memberslist_id[$i]."' target='_blank'>".$memberslist_uname[$memberslist_id[$i]]."</a>"; ! $hidden .= "<input type='hidden' name='memberslist_id[]' value='".$memberslist_id[$i]."' />\n"; } echo "<div><h4>".sprintf(_AM_AYSYWTDU," ".$list." ")."</h4>"; *************** *** 79,87 **** break; case "delete_many_ok": ! $count = count($HTTP_POST_VARS['memberslist_id']); $output = ""; $member_handler =& xoops_gethandler('member'); for ( $i = 0; $i < $count; $i++ ) { ! $deluser =& $member_handler->getUser($HTTP_POST_VARS['memberslist_id'][$i]); if (!$member_handler->deleteUser($deluser)) { $output .= "Could not delete ".$deluser->getVar("uname")."<br />"; --- 85,93 ---- break; case "delete_many_ok": ! $count = count($memberslist_id); $output = ""; $member_handler =& xoops_gethandler('member'); for ( $i = 0; $i < $count; $i++ ) { ! $deluser =& $member_handler->getUser($memberslist_id[$i]); if (!$member_handler->deleteUser($deluser)) { $output .= "Could not delete ".$deluser->getVar("uname")."<br />"; *************** *** 164,167 **** --- 170,174 ---- redirect_header("admin.php?fct=users&op=modifyUser&uid=".$uid,1,_AM_DBUPDATED); break; + case "mod_users": default: include_once XOOPS_ROOT_PATH.'/class/pagenav.php'; |
From: <ok...@us...> - 2003-01-03 07:15:56
|
Update of /cvsroot/xoops/xoops2 In directory sc8-pr-cvs1:/tmp/cvs-serv8913 Modified Files: xoops.css Log Message: Index: xoops.css =================================================================== RCS file: /cvsroot/xoops/xoops2/xoops.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** xoops.css 3 Jan 2003 07:10:09 -0000 1.3 --- xoops.css 3 Jan 2003 07:15:53 -0000 1.4 *************** *** 1,7 **** ! img { border: 0;} ! ! .ahem { display: none;} ! ! td.nw { white-space: nowrap;} ! #xoopsHiddenText { visibility: hidden; color: #000000; font-weight: normal; font-style: normal; text-decoration: none;} --- 1,3 ---- ! img {border: 0;} ! #xoopsHiddenText {visibility: hidden; color: #000000; font-weight: normal; font-style: normal; text-decoration: none;} |
From: <ok...@us...> - 2003-01-03 07:10:12
|
Update of /cvsroot/xoops/xoops2 In directory sc8-pr-cvs1:/tmp/cvs-serv6773 Modified Files: xoops.css Log Message: Index: xoops.css =================================================================== RCS file: /cvsroot/xoops/xoops2/xoops.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** xoops.css 3 Jan 2003 07:07:56 -0000 1.2 --- xoops.css 3 Jan 2003 07:10:09 -0000 1.3 *************** *** 1,7 **** ! img {border: 0;} ! .ahem {display: none;} ! td.nw {white-space: nowrap;} ! #xoopsHiddenText {visibility: hidden; color: #000000; font-weight: normal; font-style: normal; text-decoration: none;} --- 1,7 ---- ! img { border: 0;} ! .ahem { display: none;} ! td.nw { white-space: nowrap;} ! #xoopsHiddenText { visibility: hidden; color: #000000; font-weight: normal; font-style: normal; text-decoration: none;} |
From: <ok...@us...> - 2003-01-03 07:07:59
|
Update of /cvsroot/xoops/xoops2 In directory sc8-pr-cvs1:/tmp/cvs-serv5934 Modified Files: xoops.css Log Message: syncmail test Index: xoops.css =================================================================== RCS file: /cvsroot/xoops/xoops2/xoops.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xoops.css 2 Jan 2003 14:56:45 -0000 1.1 --- xoops.css 3 Jan 2003 07:07:56 -0000 1.2 *************** *** 1,15 **** ! img { ! border: 0; ! } ! .ahem { ! display: none; ! } ! td.nw { ! white-space: nowrap; ! } ! #xoopsHiddenText { ! visibility: hidden; color: #000000; font-weight: normal; font-style: normal; text-decoration: none; ! } --- 1,7 ---- ! img {border: 0;} ! .ahem {display: none;} ! td.nw {white-space: nowrap;} ! #xoopsHiddenText {visibility: hidden; color: #000000; font-weight: normal; font-style: normal; text-decoration: none;} |
From: <go...@us...> - 2002-10-11 16:57:38
|
Update of /cvsroot/xoops/xoops-current/html/class In directory usw-pr-cvs1:/tmp/cvs-serv32699/html/class Modified Files: xoopslists.php Log Message: Fixed a bug found by bblackmoor Index: xoopslists.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/class/xoopslists.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** xoopslists.php 27 Sep 2002 12:58:24 -0000 1.6 --- xoopslists.php 11 Oct 2002 16:57:35 -0000 1.7 *************** *** 135,139 **** function &getSubjectsList($sub_dir=""){ $subjects = array(); ! if($subject_dir != ""){ $subjects =& XoopsLists::getImgListAsArray(XOOPS_ROOT_PATH."/images/subject/".$sub_dir, $sub_dir."/"); } else { --- 135,139 ---- function &getSubjectsList($sub_dir=""){ $subjects = array(); ! if($sub_dir != ""){ $subjects =& XoopsLists::getImgListAsArray(XOOPS_ROOT_PATH."/images/subject/".$sub_dir, $sub_dir."/"); } else { |
From: <w4...@us...> - 2002-10-11 15:34:54
|
Update of /cvsroot/xoops/xoops-current/html/modules/sections/language/spanish In directory usw-pr-cvs1:/tmp/cvs-serv1021/html/modules/sections/language/spanish Modified Files: main.php Log Message: Spanish lang changes Index: main.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/sections/language/spanish/main.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** main.php 7 Oct 2002 13:05:15 -0000 1.2 --- main.php 11 Oct 2002 15:34:51 -0000 1.3 *************** *** 1,4 **** <?php // Xoops Spanish Support (www.xoops.sytes.net) ! define("_MD_MUSTREGFIRST","Necesita ser un usuario registrado o ingresar para enviar un pedido de modificación.<br>Por favor Registrese o ingrese."); define("_MD_WELCOMETOSEC","Bienvenido a la Sección Especial de %s"); define("_MD_HEREUCANFIND","Aquí podrá encontrar algunos artículos que no estan presentes en el resto del sitio"); --- 1,4 ---- <?php // Xoops Spanish Support (www.xoops.sytes.net) ! define("_MD_MUSTREGFIRST","Necesita ser un usuario registrado o ingresar para enviar un pedido de modificación.<br />Por favor Registrese o ingrese."); define("_MD_WELCOMETOSEC","Bienvenido a la Sección Especial de %s"); define("_MD_HEREUCANFIND","Aquí podrá encontrar algunos artículos que no estan presentes en el resto del sitio"); |
From: <w4...@us...> - 2002-10-11 15:34:54
|
Update of /cvsroot/xoops/xoops-current/html/modules/newbb/language/spanish In directory usw-pr-cvs1:/tmp/cvs-serv1021/html/modules/newbb/language/spanish Modified Files: admin.php Log Message: Spanish lang changes Index: admin.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/newbb/language/spanish/admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** admin.php 7 Oct 2002 13:05:14 -0000 1.2 --- admin.php 11 Oct 2002 15:34:51 -0000 1.3 *************** *** 53,57 **** define("_MD_A_REMOVECATEGORY","Borrar Categoría"); define("_MD_A_CREATENEWCATEGORY","Crear una Nueva Categoría"); ! define("_MD_A_YDNFOATPOTFDYAA","Usted no llenó todas las partes del formulario.<br>¿Asigno al menos a un moderador? Por favor vuelva y corrija el formulario.."); define("_MD_A_FORUMCREATED","Foro Creado."); define("_MD_A_VTFYJC","Ver el foro que ha creado."); --- 53,57 ---- define("_MD_A_REMOVECATEGORY","Borrar Categoría"); define("_MD_A_CREATENEWCATEGORY","Crear una Nueva Categoría"); ! define("_MD_A_YDNFOATPOTFDYAA","Usted no llenó todas las partes del formulario.<br />¿Asigno al menos a un moderador? Por favor vuelva y corrija el formulario.."); define("_MD_A_FORUMCREATED","Foro Creado."); define("_MD_A_VTFYJC","Ver el foro que ha creado."); |
From: <w4...@us...> - 2002-10-11 15:34:53
|
Update of /cvsroot/xoops/xoops-current/html/modules/mylinks/language/spanish In directory usw-pr-cvs1:/tmp/cvs-serv1021/html/modules/mylinks/language/spanish Modified Files: main.php Log Message: Spanish lang changes Index: main.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mylinks/language/spanish/main.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** main.php 7 Oct 2002 13:05:14 -0000 1.4 --- main.php 11 Oct 2002 15:34:51 -0000 1.5 *************** *** 108,115 **** define("_MD_ALREADYREPORTED","Usted ya ha enviado un reporte de enlace roto para este Recurso."); ! define("_MD_MUSTREGFIRST","Necesita ser un usuario Registrado o Ingresar para enviar un pedido de Modificación.<br>Por Favor regístrese o ingrese!"); define("_MD_NORATING","Sin Valoración."); ! define("_MD_CANTVOTEOWN","Usted no puede votar por un Recurso que usted mismo envió.<br>Todos los votos son registrados y Controlados."); ! define("_MD_VOTEONCE2","Vote por el recurso elegido solo una vez.<br>Todos los votos son registrados y Controlados."); //%%%%%% Module Name 'MyLinks' (Admin) %%%%% --- 108,115 ---- define("_MD_ALREADYREPORTED","Usted ya ha enviado un reporte de enlace roto para este Recurso."); ! define("_MD_MUSTREGFIRST","Necesita ser un usuario Registrado o Ingresar para enviar un pedido de Modificación.<br />Por Favor regístrese o ingrese!"); define("_MD_NORATING","Sin Valoración."); ! define("_MD_CANTVOTEOWN","Usted no puede votar por un Recurso que usted mismo envió.<br />Todos los votos son registrados y Controlados."); ! define("_MD_VOTEONCE2","Vote por el recurso elegido solo una vez.<br />Todos los votos son registrados y Controlados."); //%%%%%% Module Name 'MyLinks' (Admin) %%%%% |
From: <w4...@us...> - 2002-10-11 15:34:53
|
Update of /cvsroot/xoops/xoops-current/html/modules/mydownloads/language/spanish In directory usw-pr-cvs1:/tmp/cvs-serv1021/html/modules/mydownloads/language/spanish Modified Files: main.php Log Message: Spanish lang changes Index: main.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mydownloads/language/spanish/main.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** main.php 7 Oct 2002 13:05:14 -0000 1.4 --- main.php 11 Oct 2002 15:34:50 -0000 1.5 *************** *** 81,85 **** define("_MD_THANKYOU","Gracias por tomarse el tiempo para votar aquí a %s"); define("_MD_VOTEFROMYOU","Entradas de usuarios como usted pueden ayudar a otros visitantes a decidir que archivo bajar."); ! define("_MD_VOTEONCE","Vote por el recurso seleccionado solo una vez.<br>Todos los votos son registrados y analizados."); define("_MD_RATINGSCALE","La escala es 1 - 10, con 1 como pésimo y 10 como excelente."); define("_MD_BEOBJECTIVE","Por favor sea Objetivo, Si todos envian un 1 o un 10, la valoración no será muy util."); --- 81,85 ---- define("_MD_THANKYOU","Gracias por tomarse el tiempo para votar aquí a %s"); define("_MD_VOTEFROMYOU","Entradas de usuarios como usted pueden ayudar a otros visitantes a decidir que archivo bajar."); ! define("_MD_VOTEONCE","Vote por el recurso seleccionado solo una vez.<br />Todos los votos son registrados y analizados."); define("_MD_RATINGSCALE","La escala es 1 - 10, con 1 como pésimo y 10 como excelente."); define("_MD_BEOBJECTIVE","Por favor sea Objetivo, Si todos envian un 1 o un 10, la valoración no será muy util."); *************** *** 123,129 **** define("_MD_BYTES","Bytes"); define("_MD_ALREADYREPORTED","Usted ya ha enviado un reporte de archivo roto para este Recurso."); ! define("_MD_MUSTREGFIRST","Necesita ser un usuario registrado o ingresar para enviar un pedido de modificación.<br>Por favor Registrese o ingrese."); define("_MD_NORATING","No seleccionó Valoración."); ! define("_MD_CANTVOTEOWN","Usted no puede votar por el recurso que Ud. envió.<br>Todos los Votos son Registrados y Revisados."); //%%%%%% Module Name 'MyDownloads' (Admin) %%%%% --- 123,129 ---- define("_MD_BYTES","Bytes"); define("_MD_ALREADYREPORTED","Usted ya ha enviado un reporte de archivo roto para este Recurso."); ! define("_MD_MUSTREGFIRST","Necesita ser un usuario registrado o ingresar para enviar un pedido de modificación.<br />Por favor Registrese o ingrese."); define("_MD_NORATING","No seleccionó Valoración."); ! define("_MD_CANTVOTEOWN","Usted no puede votar por el recurso que Ud. envió.<br />Todos los Votos son Registrados y Revisados."); //%%%%%% Module Name 'MyDownloads' (Admin) %%%%% |
From: <w4...@us...> - 2002-10-11 15:34:53
|
Update of /cvsroot/xoops/xoops-current/html/language/spanish In directory usw-pr-cvs1:/tmp/cvs-serv1021/html/language/spanish Modified Files: user.php Log Message: Spanish lang changes Index: user.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/language/spanish/user.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** user.php 7 Oct 2002 13:05:13 -0000 1.5 --- user.php 11 Oct 2002 15:34:50 -0000 1.6 *************** *** 18,22 **** // 2001-11-17 ADD ! define("_US_NOACTTPADM","El usuario seleccionado ha sido desactivado o no ha sido activado aún.<br>Por favor contacte al administrador por detalles."); define("_US_ACTKEYNOT","Llave de activación Incorrecta!"); define("_US_ACONTACT","La cuenta Seleccionada ha sido Activada!"); --- 18,22 ---- // 2001-11-17 ADD ! define("_US_NOACTTPADM","El usuario seleccionado ha sido desactivado o no ha sido activado aún.<br />Por favor contacte al administrador por detalles."); define("_US_ACTKEYNOT","Llave de activación Incorrecta!"); define("_US_ACONTACT","La cuenta Seleccionada ha sido Activada!"); *************** *** 53,57 **** define("_US_REGISTERNG","No p[uedo registrar Nuevo Usuario."); define("_US_WELCOME","Bienvenido a %s!"); ! define('_US_MAILOK',"¿Permitir a los administradores y moderadores enviarle emails con noticias?"); --- 53,57 ---- define("_US_REGISTERNG","No p[uedo registrar Nuevo Usuario."); define("_US_WELCOME","Bienvenido a %s!"); ! define('_US_MAILOK',"¿Permitir a los administradores y<br /> moderadores enviarle emails con noticias?"); |
From: <go...@us...> - 2002-10-11 10:05:50
|
Update of /cvsroot/xoops/xoops-current/html/modules/newbb/admin In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/newbb/admin Modified Files: admin_forums.php Log Message: Index: admin_forums.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/newbb/admin/admin_forums.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin_forums.php 11 Oct 2002 06:14:22 -0000 1.5 --- admin_forums.php 11 Oct 2002 10:05:17 -0000 1.6 *************** *** 733,740 **** exit(); } ! echo "<div align=\"center\"><span class='fg2'>"._MD_A_CATEGORYMOVEUP."</span></div><br />"; } else ! echo "<div align=\"center\"><span class='fg2'>"._MD_A_TCIATHU."</span></div><br />"; } --- 733,740 ---- exit(); } ! echo "<div><span class='fg2'>"._MD_A_CATEGORYMOVEUP."</span></div><br />"; } else ! echo "<div><span class='fg2'>"._MD_A_TCIATHU."</span></div><br />"; } *************** *** 761,769 **** exit(); } ! echo "<div align=\"center\"><span class='fg2'>"._MD_A_CATEGORYMOVEDOWN."</span></div><br />"; } else ! echo "<div align=\"center\"><span class='fg2'>"._MD_A_TCIATLD."</span></div><br />"; } --- 761,769 ---- exit(); } ! echo "<div><span class='fg2'>"._MD_A_CATEGORYMOVEDOWN."</span></div><br />"; } else ! echo "<div><span class='fg2'>"._MD_A_TCIATLD."</span></div><br />"; } |
From: <go...@us...> - 2002-10-11 10:05:50
|
Update of /cvsroot/xoops/xoops-current/html/modules/mylinks In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/mylinks Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mylinks/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.php 11 Oct 2002 06:14:22 -0000 1.5 --- index.php 11 Oct 2002 10:05:17 -0000 1.6 *************** *** 84,88 **** echo "</td></tr></table>"; list($numrows)=$xoopsDB->fetchRow($xoopsDB->query("select count(*) from ".$xoopsDB->prefix("mylinks_links")." where status>0")); ! echo "<br /><br /><div align='center'>"; printf(_MD_THEREARE,$numrows); echo "</div>"; --- 84,88 ---- echo "</td></tr></table>"; list($numrows)=$xoopsDB->fetchRow($xoopsDB->query("select count(*) from ".$xoopsDB->prefix("mylinks_links")." where status>0")); ! echo "<br /><br /><div>"; printf(_MD_THEREARE,$numrows); echo "</div>"; |
From: <go...@us...> - 2002-10-11 10:05:50
|
Update of /cvsroot/xoops/xoops-current/html/modules/mylinks/include In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/mylinks/include Modified Files: functions.php Log Message: Index: functions.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mylinks/include/functions.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** functions.php 15 Jul 2002 08:13:25 -0000 1.1.1.1 --- functions.php 11 Oct 2002 10:05:17 -0000 1.2 *************** *** 1,7 **** <?php function mainheader($mainlink=1) { ! echo "<br /><br /><p><div align=\"center\">"; ! echo "<a href=\"".XOOPS_URL."/modules/mylinks/index.php\"><img src=\"".XOOPS_URL."/modules/mylinks/images/logo.gif\" border=\"0\" /></a>"; ! echo "</div></p><br />"; } --- 1,5 ---- <?php function mainheader($mainlink=1) { ! echo "<br /><br /><p><a href='".XOOPS_URL."/modules/mylinks/index.php'><img src='".XOOPS_URL."/modules/mylinks/images/logo.gif' alt='' /></a></p><br />"; } |
From: <go...@us...> - 2002-10-11 10:05:49
|
Update of /cvsroot/xoops/xoops-current/html/modules/mylinks/admin In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/mylinks/admin Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mylinks/admin/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.php 11 Oct 2002 06:14:22 -0000 1.4 --- index.php 11 Oct 2002 10:05:16 -0000 1.5 *************** *** 64,68 **** $result=$xoopsDB->query("select count(*) from ".$xoopsDB->prefix("mylinks_links")." where status>0"); list($numrows) = $xoopsDB->fetchRow($result); ! echo "<br /><br /><div align=\"center\">"; printf(_MD_THEREARE,$numrows); echo "</div>"; CloseTable(); --- 64,68 ---- $result=$xoopsDB->query("select count(*) from ".$xoopsDB->prefix("mylinks_links")." where status>0"); list($numrows) = $xoopsDB->fetchRow($result); ! echo "<br /><br /><div>"; printf(_MD_THEREARE,$numrows); echo "</div>"; CloseTable(); |
From: <go...@us...> - 2002-10-11 10:05:49
|
Update of /cvsroot/xoops/xoops-current/html/modules/mydownloads In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/mydownloads Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mydownloads/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.php 11 Oct 2002 06:14:21 -0000 1.3 --- index.php 11 Oct 2002 10:05:16 -0000 1.4 *************** *** 29,33 **** $mytree = new XoopsTree($xoopsDB->prefix("mydownloads_cat"),"cid","pid"); - $q = "SELECT cid, title, imgurl FROM ".$xoopsDB->prefix("mydownloads_cat")." WHERE pid = 0 ORDER BY title"; $result=$xoopsDB->query($q) or die(""); --- 29,32 ---- *************** *** 44,62 **** $mainlink = 0; mainheader($mainlink); ! echo "<center>\n"; ! echo "<table border=\"0\" cellspacing=\"5\" cellpadding=\"0\" width=\"90%\"><tr>\n"; $count = 0; while($myrow = $xoopsDB->fetchArray($result)) { $title = $myts->makeTboxData4Show($myrow['title']); ! echo "<td valign=\"top\" align=\"right\">"; if ($myrow['imgurl'] && $myrow['imgurl'] != "http://"){ $imgurl = $myts->makeTboxData4Edit($myrow['imgurl']); ! echo "<a href=\"".XOOPS_URL."/modules/mydownloads/viewcat.php?cid=".$myrow['cid']."\"><img src=\"".$imgurl."\" height=\"50\" border=\"0\"></a>"; } else { ! echo ""; } $totaldownload = getTotalItems($myrow['cid'], 1); ! echo "</td><td valign=\"top\" width=\"40%\" align=\"left\"><a href=\"".XOOPS_URL."/modules/mydownloads/viewcat.php?cid=".$myrow['cid']."\"><b>$title</b></a> ($totaldownload)<br />"; // get child category objects $arr=array(); --- 43,61 ---- $mainlink = 0; mainheader($mainlink); ! ! echo "<table border='0' cellspacing='5' cellpadding='0' width='90%'><tr>\n"; $count = 0; while($myrow = $xoopsDB->fetchArray($result)) { $title = $myts->makeTboxData4Show($myrow['title']); ! echo "<td valign='top' align='right'>"; if ($myrow['imgurl'] && $myrow['imgurl'] != "http://"){ $imgurl = $myts->makeTboxData4Edit($myrow['imgurl']); ! echo "<a href='".XOOPS_URL."/modules/mydownloads/viewcat.php?cid=".$myrow['cid']."'><img src='$imgurl' height='50' alt='' /></a>"; } else { ! echo ""; } $totaldownload = getTotalItems($myrow['cid'], 1); ! echo "</td><td valign='top' width='40%' align='left'><a href='".XOOPS_URL."/modules/mydownloads/viewcat.php?cid=".$myrow['cid']."'><b>$title</b></a> ($totaldownload)<br />"; // get child category objects $arr=array(); *************** *** 64,88 **** $space = 0; $chcount = 0; ! foreach($arr as $ele){ $chtitle=$myts->makeTboxData4Show($ele['title']); ! if ($chcount>5){ echo "..."; break; } ! if ($space>0) { ! echo ", "; ! } ! echo "<a href=\"".XOOPS_URL."/modules/mydownloads/viewcat.php?cid=".$ele['cid']."\">".$chtitle."</a>"; ! $space++; $chcount++; } ! if ($count<1) { ! echo "</td>"; ! } ! $count++; ! if ($count==2) { ! echo "</td></tr><tr>"; ! $count = 0; ! } } echo "</td></tr></table>"; --- 63,87 ---- $space = 0; $chcount = 0; ! foreach($arr as $ele) { $chtitle=$myts->makeTboxData4Show($ele['title']); ! if ( $chcount > 5 ) { echo "..."; break; } ! if ( $space > 0 ) { ! echo ", "; ! } ! echo "<a href='".XOOPS_URL."/modules/mydownloads/viewcat.php?cid=".$ele['cid']."'>$chtitle</a>"; ! $space++; $chcount++; } ! if ( $count < 1 ) { ! echo "</td>"; ! } ! $count++; ! if ( $count == 2 ) { ! echo "</tr><tr>"; ! $count = 0; ! } } echo "</td></tr></table>"; *************** *** 90,100 **** echo "<br /><br />"; printf(_MD_THEREARE,$numrows); ! echo "</center>"; CloseTable(); ! echo "<br>"; OpenTable(); ! echo "<div align=\"center\"><big><b>"._MD_LATESTLIST."</b></big><br /><br />"; showNew($mytree); echo "</div>"; --- 89,99 ---- echo "<br /><br />"; printf(_MD_THEREARE,$numrows); ! CloseTable(); ! echo "<br />"; OpenTable(); ! echo "<div><big><b>"._MD_LATESTLIST."</b></big><br /><br />"; showNew($mytree); echo "</div>"; |
From: <go...@us...> - 2002-10-11 10:05:49
|
Update of /cvsroot/xoops/xoops-current/html/modules/mydownloads/include In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/mydownloads/include Modified Files: functions.php Log Message: Index: functions.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mydownloads/include/functions.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** functions.php 15 Jul 2002 08:13:21 -0000 1.1.1.1 --- functions.php 11 Oct 2002 10:05:16 -0000 1.2 *************** *** 2,8 **** function mainheader($mainlink=1) { ! echo "<br /><br /><p><div align=\"center\">"; ! echo "<a href=\"".XOOPS_URL."/modules/mydownloads/index.php\"><img src=\"".XOOPS_URL."/modules/mydownloads/images/logo-en.gif\" border=\"0\" alt\"\" /></a>"; ! echo "</p><br /><br />"; } --- 2,6 ---- function mainheader($mainlink=1) { ! echo "<br /><br /><p><a href='".XOOPS_URL."/modules/mydownloads/index.php'><img src='".XOOPS_URL."/modules/mydownloads/images/logo-en.gif' alt='' /></a></p><br /><br />"; } |
From: <go...@us...> - 2002-10-11 10:05:49
|
Update of /cvsroot/xoops/xoops-current/html/modules/mydownloads/admin In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/mydownloads/admin Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/mydownloads/admin/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.php 11 Oct 2002 06:14:21 -0000 1.4 --- index.php 11 Oct 2002 10:05:16 -0000 1.5 *************** *** 63,67 **** $result=$xoopsDB->query("SELECT COUNT(*) FROM ".$xoopsDB->prefix("mydownloads_downloads")." WHERE status>0"); list($numrows) = $xoopsDB->fetchRow($result); ! echo "<br /><br /><div align=\"center\">"; printf(_MD_THEREARE,$numrows); echo "</div>"; CloseTable(); --- 63,67 ---- $result=$xoopsDB->query("SELECT COUNT(*) FROM ".$xoopsDB->prefix("mydownloads_downloads")." WHERE status>0"); list($numrows) = $xoopsDB->fetchRow($result); ! echo "<br /><br /><div>"; printf(_MD_THEREARE,$numrows); echo "</div>"; CloseTable(); |
From: <go...@us...> - 2002-10-11 10:05:48
|
Update of /cvsroot/xoops/xoops-current/html/include In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/include Modified Files: functions.php Log Message: Index: functions.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/include/functions.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** functions.php 11 Oct 2002 06:14:21 -0000 1.20 --- functions.php 11 Oct 2002 10:05:15 -0000 1.21 *************** *** 294,298 **** </head> <body> ! <div align="center"> <div class="redirect"> <h4 style="text-align: center">'.$message.'</h4> --- 294,298 ---- </head> <body> ! <div> <div class="redirect"> <h4 style="text-align: center">'.$message.'</h4> |
From: <go...@us...> - 2002-10-11 10:05:22
|
Update of /cvsroot/xoops/xoops-current/html/modules/xoopsfaq/admin In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/xoopsfaq/admin Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/xoopsfaq/admin/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 11 Oct 2002 06:14:25 -0000 1.2 --- index.php 11 Oct 2002 10:05:19 -0000 1.3 *************** *** 266,270 **** xoops_cp_header(); OpenTable(); ! echo "<div align='center'>"; echo "<h4 style='color:#ff0000'>"._XD_RUSURECAT."</h4>"; echo "<table><tr><td>\n"; --- 266,270 ---- xoops_cp_header(); OpenTable(); ! echo "<div>"; echo "<h4 style='color:#ff0000'>"._XD_RUSURECAT."</h4>"; echo "<table><tr><td>\n"; *************** *** 294,298 **** } else { xoops_cp_header(); ! echo "<div align='center'>"; echo "<h4 style='color=:#ff0000'>"._XD_RUSURECONT."</h4>"; echo "<table><tr><td>\n"; --- 294,298 ---- } else { xoops_cp_header(); ! echo "<div>"; echo "<h4 style='color=:#ff0000'>"._XD_RUSURECONT."</h4>"; echo "<table><tr><td>\n"; |
From: <go...@us...> - 2002-10-11 10:05:22
|
Update of /cvsroot/xoops/xoops-current/html/modules/xoopspoll In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/xoopspoll Modified Files: deletecomment.php Log Message: Index: deletecomment.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/xoopspoll/deletecomment.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** deletecomment.php 15 Jul 2002 08:14:01 -0000 1.1.1.1 --- deletecomment.php 11 Oct 2002 10:05:19 -0000 1.2 *************** *** 30,34 **** include(XOOPS_ROOT_PATH."/header.php"); OpenTable(); ! echo "<div align=\"center\">"; echo "<h4 style='color:#ff0000;'>"._PL_AREYOUSURE."</h4>"; echo "<table><tr><td>\n"; --- 30,34 ---- include(XOOPS_ROOT_PATH."/header.php"); OpenTable(); ! echo "<div>"; echo "<h4 style='color:#ff0000;'>"._PL_AREYOUSURE."</h4>"; echo "<table><tr><td>\n"; |
From: <go...@us...> - 2002-10-11 10:05:22
|
Update of /cvsroot/xoops/xoops-current/html/modules/system/admin/version In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/system/admin/version Modified Files: main.php Log Message: Index: main.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/system/admin/version/main.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** main.php 11 Oct 2002 06:14:25 -0000 1.3 --- main.php 11 Oct 2002 10:05:19 -0000 1.4 *************** *** 45,49 **** echo "</head>\n"; echo "<body onLoad=\"if(window.scroll)onWard()\" onmouseover=\"stop()\" onmouseout=\"if(window.scroll)onWard()\">\n"; ! echo "<div align=\"center\">"; echo "<table width=\"100%\"><tr><td align=\"center\">"; echo "<br /><br /><br /><br /><br />"; --- 45,49 ---- echo "</head>\n"; echo "<body onLoad=\"if(window.scroll)onWard()\" onmouseover=\"stop()\" onmouseout=\"if(window.scroll)onWard()\">\n"; ! echo "<div>"; echo "<table width=\"100%\"><tr><td align=\"center\">"; echo "<br /><br /><br /><br /><br />"; |
From: <go...@us...> - 2002-10-11 10:05:21
|
Update of /cvsroot/xoops/xoops-current/html/modules/sections In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/sections Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/sections/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 11 Oct 2002 06:14:23 -0000 1.2 --- index.php 11 Oct 2002 10:05:19 -0000 1.3 *************** *** 138,142 **** echo "<br /><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"2\"><tr> <td><font size=\"2\">$previous_page</font></td> ! <td><div align=\"right\"><font size=\"2\">$next_page</font></div></td> </tr></table>" ; echo "</td></tr> --- 138,142 ---- echo "<br /><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"2\"><tr> <td><font size=\"2\">$previous_page</font></td> ! <td align=\"right\"><font size=\"2\">$next_page</font></td> </tr></table>" ; echo "</td></tr> |
From: <go...@us...> - 2002-10-11 10:05:21
|
Update of /cvsroot/xoops/xoops-current/html/modules/news In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/news Modified Files: index.php Log Message: Index: index.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/news/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.php 7 Oct 2002 13:05:15 -0000 1.4 --- index.php 11 Oct 2002 10:05:18 -0000 1.5 *************** *** 69,73 **** if ( $xoops_newsConfig['displaynav'] == 1 ){ echo "<br />"; ! echo "<form name='form1' action='".$PHP_SELF."' method='get'><div align='center'>\n"; $xt = new XoopsTopic($xoopsDB->prefix("topics")); $xt->makeTopicSelBox(1, $xoopsOption['storytopic'],"storytopic"); --- 69,73 ---- if ( $xoops_newsConfig['displaynav'] == 1 ){ echo "<br />"; ! echo "<form name='form1' action='".$PHP_SELF."' method='get'><div>\n"; $xt = new XoopsTopic($xoopsDB->prefix("topics")); $xt->makeTopicSelBox(1, $xoopsOption['storytopic'],"storytopic"); |
From: <go...@us...> - 2002-10-11 10:05:21
|
Update of /cvsroot/xoops/xoops-current/html/modules/newbb In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/newbb Modified Files: viewtopic.php Log Message: Index: viewtopic.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/newbb/viewtopic.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** viewtopic.php 11 Oct 2002 06:14:22 -0000 1.11 --- viewtopic.php 11 Oct 2002 10:05:18 -0000 1.12 *************** *** 313,317 **** $poster_rank = $eachposter->rank(); if ( $poster_rank['image'] != '' ) { ! $poster_rank['image'] = '<img src="'.XOOPS_URL.'/images/ranks/'.$poster_rank['image'].'"" alt="" />'; } if ( $eachposter->isActive() ) { --- 313,317 ---- $poster_rank = $eachposter->rank(); if ( $poster_rank['image'] != '' ) { ! $poster_rank['image'] = '<img src="'.XOOPS_URL.'/images/ranks/'.$poster_rank['image'].'" alt="" />'; } if ( $eachposter->isActive() ) { *************** *** 330,334 **** $posticon = $eachpost->icon(); if ( isset($posticon) && $posticon != '' ) { ! $post_image = '<a name="'.$eachpost->postid().'"><img src="'.XOOPS_URL.'/images/subject/'.$eachpost->icon().'" alt="" /></a>'; } else { $post_image = '<a name="'.$eachpost->postid().'"><img src="'.XOOPS_URL.'/images/icons/posticon.gif" alt="" /></a>'; --- 330,334 ---- $posticon = $eachpost->icon(); if ( isset($posticon) && $posticon != '' ) { ! $post_image = "<a name='".$eachpost->postid()."'><img src='".XOOPS_URL."/images/subject/".$eachpost->icon()."' alt='' /></a>"; } else { $post_image = '<a name="'.$eachpost->postid().'"><img src="'.XOOPS_URL.'/images/icons/posticon.gif" alt="" /></a>'; |
From: <go...@us...> - 2002-10-11 10:05:21
|
Update of /cvsroot/xoops/xoops-current/html/modules/newbb/templates/xoops In directory usw-pr-cvs1:/tmp/cvs-serv9405/html/modules/newbb/templates/xoops Modified Files: thread.html viewtopic_flat.html Log Message: Index: thread.html =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/newbb/templates/xoops/thread.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** thread.html 20 Sep 2002 08:54:40 -0000 1.2 --- thread.html 11 Oct 2002 10:05:17 -0000 1.3 *************** *** 1,5 **** <!-- start thread post --> <tr> ! <td class='bg5' colspan='2'><a name="{$topic_post.post_id}"> </td> </tr> <tr valign='top' class='bg1'> --- 1,5 ---- <!-- start thread post --> <tr> ! <td class='bg5' colspan='2'><a name="{$topic_post.post_id}"></a></td> </tr> <tr valign='top' class='bg1'> Index: viewtopic_flat.html =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/newbb/templates/xoops/viewtopic_flat.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** viewtopic_flat.html 11 Oct 2002 06:14:23 -0000 1.2 --- viewtopic_flat.html 11 Oct 2002 10:05:18 -0000 1.3 *************** *** 11,17 **** <!-- start topic thread --> <table border='0' cellpadding='0' cellspacing='0' align='center' width='95%'> ! <tr> ! <td align="left"><a name="threadtop" id="threadtop"><a href="viewtopic.php?viewmode=thread&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}">{$lang_threaded}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_other}&topic_id={$topic_id}&forum={$forum_id}">{$lang_order_other}</a></td> ! <td align="right"><a href="viewtopic.php?viewmode=flat&;order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=prev&topic_time={$topic_time}">{$lang_prevtopic}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=next&topic_time={$topic_time}">{$lang_nexttopic}</a> | <a href="#threadbottom">{$lang_bottom}</a></td> <tr> <td class='bg2' colspan="2"> --- 11,18 ---- <!-- start topic thread --> <table border='0' cellpadding='0' cellspacing='0' align='center' width='95%'> ! <tr> ! <td align="left"><a id="threadtop"></a><a href="viewtopic.php?viewmode=thread&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}">{$lang_threaded}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_other}&topic_id={$topic_id}&forum={$forum_id}">{$lang_order_other}</a></td> ! <td align="right"><a href="viewtopic.php?viewmode=flat&;order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=prev&topic_time={$topic_time}">{$lang_prevtopic}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=next&topic_time={$topic_time}">{$lang_nexttopic}</a> | <a href="#threadbottom">{$lang_bottom}</a></td> ! </tr> <tr> <td class='bg2' colspan="2"> *************** *** 31,37 **** </tr> <tr> ! <td align="left"><a name="threadbottom" id="threadbottom"><a href="viewtopic.php?viewmode=thread&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}">{$lang_threaded}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_other}&topic_id={$topic_id}&forum={$forum_id}">{$lang_order_other}</a></td> <td align="right"><a href="viewtopic.php?viewmode=flat&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=prev&topic_time={$topic_time}">{$lang_prevtopic}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=next&topic_time={$topic_time}">{$lang_nexttopic}</a> | <a href="#threadtop">{$lang_top}</a></td> ! <tr> </table> <!-- end topic thread --> --- 32,38 ---- </tr> <tr> ! <td align="left"><a id="threadbottom"></a><a href="viewtopic.php?viewmode=thread&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}">{$lang_threaded}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_other}&topic_id={$topic_id}&forum={$forum_id}">{$lang_order_other}</a></td> <td align="right"><a href="viewtopic.php?viewmode=flat&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=prev&topic_time={$topic_time}">{$lang_prevtopic}</a> | <a href="viewtopic.php?viewmode=flat&order={$order_current}&topic_id={$topic_id}&forum={$forum_id}&move=next&topic_time={$topic_time}">{$lang_nexttopic}</a> | <a href="#threadtop">{$lang_top}</a></td> ! </tr> </table> <!-- end topic thread --> |