 |
 |
 |
 |
#115602 - 09/03/03 12:14 PM
Re: Compact TBT/TBB
|
Coder
Registered: 06/10/01
Posts: 705
Loc: CT
|
Installed on 6.1.0.4 Seems these lines have not been altered since back in the day and I have not altered them either Thank you Allen!
_________________________
...Steven Hostboard.com Running UBB v6.1.0.4 Doing what NO other UBB in the world is doing. The first & only production UBB powered by MySQL.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#115604 - 09/03/03 06:16 PM
Re: Compact TBT/TBB
|
Coder
Registered: 06/10/01
Posts: 705
Loc: CT
|
Are there any other tables that can be modified like this? Or was there a modification made that lists them?
_________________________
...Steven Hostboard.com Running UBB v6.1.0.4 Doing what NO other UBB in the world is doing. The first & only production UBB powered by MySQL.
|
|
Top
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#115621 - 05/17/04 08:26 AM
Re: Compact TBT/TBB
|
Master Hacker
Registered: 01/25/03
Posts: 3765
Loc: Saint Johns, PA
|
In public_ci_members.pl FIND: (3 times) my $TBT_ci = qq(
<table border="0" cellpadding="$table_borders[0]" cellspacing="$table_borders[1]" width="$civar->{args}->{html_width}" align="center">
<tr bgcolor="$vars_style{TableBorderColor}"><td>
<table border="0" width="100%" cellpadding="$table_borders[2]" cellspacing="$table_borders[3]">
);REPLACE WITH: my $TBT_ci = qq(
<table bgcolor="$vars_style{TableBorderColor}" style="border: $table_borders[0]px $vars_style{TableBorderColor} solid" cellpadding="$table_borders[2]" cellspacing="$table_borders[3]" width="$civar->{args}->{html_width}" align="center">
);Then, in public_common.pl FIND: $TBT_Popup = qq(
<center><table border="0" cellpadding="$table_borders[0]" cellspacing="$table_borders[1]" width="98%" align="center">
<tr bgcolor="$vars_style{TableBorderColor}"><td>
<table border="0" width="100%" cellpadding="$table_borders[2]" cellspacing="$table_borders[3]">
);REPLACE WITH: $TBT_Popup = qq(
<center><table bgcolor="$vars_style{TableBorderColor}" style="border: $table_borders[0]px $vars_style{TableBorderColor} solid" cellpadding="$table_borders[2]" cellspacing="$table_borders[3]" width="98%" align="center">
);Then, FIND: return qq(
<table border="0" cellpadding="$table_borders[0]" cellspacing="$table_borders[1]" width="$_[0]" align="$_[1]">
<tr bgcolor="$vars_style{TableBorderColor}"><td>
<table border="0" width="100%" cellpadding="$table_borders[2]" cellspacing="$table_borders[3]">
);REPLACE WITH: return qq(
<table bgcolor="$vars_style{TableBorderColor}" style="border: $table_borders[0]px $vars_style{TableBorderColor} solid" cellpadding="$table_borders[2]" cellspacing="$table_borders[3]" width="$_[0]" align="$_[1]">
);
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|