1
0
mirror of https://github.com/e107inc/e107.git synced 2025-09-03 11:22:40 +02:00

Bugtracker #3919 - more relative path removal

This commit is contained in:
e107steved
2007-05-28 16:52:49 +00:00
parent 56acd2ac65
commit ff5b5a1e47
8 changed files with 31 additions and 31 deletions

View File

@@ -11,15 +11,15 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_themes/khatru/forum_viewforum_template.php,v $
| $Revision: 1.2 $
| $Date: 2007-01-20 16:31:14 $
| $Author: mrpete $
| $Revision: 1.3 $
| $Date: 2007-05-28 16:52:39 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
$icon = (file_exists(THEME."forum/e.png") ? THEME."forum/e.png" : e_PLUGIN."forum/images/lite/e.png");
$icon = (file_exists(THEME."forum/e.png") ? THEME_ABS."forum/e.png" : e_PLUGIN."forum/images/lite/e.png");

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_themes/leaf/theme.php,v $
| $Revision: 1.2 $
| $Date: 2007-03-03 19:59:43 $
| $Revision: 1.3 $
| $Date: 2007-05-28 16:52:39 $
| $Author: e107steved $
+---------------------------------------------------------------+
*/
@@ -61,16 +61,16 @@ $colorstyle ="E2EDF0";
// [header function]
function theme_head() {
global $logo, $colorstyle;
return "<link rel='alternate stylesheet' type='text/css' href='".THEME."style.css' title='Small' />
<link rel='alternate stylesheet' type='text/css' href='".THEME."fontstyles/medium.css' title='Medium' />
<link rel='alternate stylesheet' type='text/css' href='".THEME."fontstyles/large.css' title='Large' />
return "<link rel='alternate stylesheet' type='text/css' href='".THEME_ABS."style.css' title='Small' />
<link rel='alternate stylesheet' type='text/css' href='".THEME_ABS."fontstyles/medium.css' title='Medium' />
<link rel='alternate stylesheet' type='text/css' href='".THEME_ABS."fontstyles/large.css' title='Large' />
<style type='text/css'>
#header{
position: relative;
width: 700px;
height: 151px;
margin: auto;
background: url(".THEME."images/01_header0".$logo.".jpg) no-repeat;
background: url(".THEME_ABS."images/01_header0".$logo.".jpg) no-repeat;
}
/* Sidbar menu content styles */
.loginform, .searchform, .chatboxform, .onlineform{

View File

@@ -7,7 +7,7 @@ if(!$LOGIN_TABLE_HEADER){
$LOGIN_TABLE_HEADER .= "
<div style='width:100%;text-align:center; margin-left: auto;margin-right: auto'><br />
<div style='text-align:center;width:70%;margin-left: auto;margin-right: auto'>
".(file_exists(THEME."images/login_logo.png") ? "<img src='".THEME."images/login_logo.png' alt='' />\n" : "<img src='".e_IMAGE."logo.png' alt='' />\n" );
".(file_exists(THEME."images/login_logo.png") ? "<img src='".THEME_ABS."images/login_logo.png' alt='' />\n" : "<img src='".e_IMAGE."logo.png' alt='' />\n" );
}
// ##### LOGIN TABLE -----------------------------------------------------------------------------
@@ -18,7 +18,7 @@ if(!$LOGIN_TABLE){
}
$LOGIN_TABLE .= "
<div style='text-align:center'>
".$rs -> form_open("post", e_SELF)."<table class='fborder' style='width:60%' >\n<tr>\n<td class='forumheader' style='text-align:center;' colspan='3'>".LAN_LOGIN_4."</td>\n</tr>\n<tr>\n<td class='forumheader3' width='40%'>".LAN_LOGIN_1."</td>\n<td class='forumheader3' width='40%'>{LOGIN_TABLE_USERNAME}</td>\n<td class='forumheader3' width='20%' rowspan='".($LOGIN_TABLE_SECIMG_SECIMG ? 3 : 2)."' style='vertical-align: middle; margin-left: auto; margin-right: auto; text-align: center;'>".(file_exists(THEME."images/password.png") ? "<img src='".THEME."images/password.png' alt='' />\n" : "<img src='".e_IMAGE."packs/".$imode."/generic/password.png' alt='' />\n" )."</td>\n</tr>\n<tr>\n<td class='forumheader3'>".LAN_LOGIN_2."</td>\n<td class='forumheader3'>{LOGIN_TABLE_PASSWORD}</td>\n</tr>\n";
".$rs -> form_open("post", e_SELF)."<table class='fborder' style='width:60%' >\n<tr>\n<td class='forumheader' style='text-align:center;' colspan='3'>".LAN_LOGIN_4."</td>\n</tr>\n<tr>\n<td class='forumheader3' width='40%'>".LAN_LOGIN_1."</td>\n<td class='forumheader3' width='40%'>{LOGIN_TABLE_USERNAME}</td>\n<td class='forumheader3' width='20%' rowspan='".($LOGIN_TABLE_SECIMG_SECIMG ? 3 : 2)."' style='vertical-align: middle; margin-left: auto; margin-right: auto; text-align: center;'>".(file_exists(THEME."images/password.png") ? "<img src='".THEME_ABS."images/password.png' alt='' />\n" : "<img src='".e_IMAGE."packs/".$imode."/generic/password.png' alt='' />\n" )."</td>\n</tr>\n<tr>\n<td class='forumheader3'>".LAN_LOGIN_2."</td>\n<td class='forumheader3'>{LOGIN_TABLE_PASSWORD}</td>\n</tr>\n";
if($LOGIN_TABLE_SECIMG_SECIMG){
$LOGIN_TABLE .= "<tr><td class='forumheader3'>{LOGIN_TABLE_SECIMG_LAN}</td>\n<td class='forumheader3'>{LOGIN_TABLE_SECIMG_HIDDEN} {LOGIN_TABLE_SECIMG_SECIMG} {LOGIN_TABLE_SECIMG_TEXTBOC}</td>\n</tr>\n";
}