Follow vBSEO on Twitter
vBulletin Modifications
  • Forums
  • Add-Ons
  • Template Modifications
  • Styles
  • Graphics
  • Tutorials
  • Support Center
  • Register
  • vBulletin SEO

Member Log In

Site Navigation

  • Register
  • Members List
  • Social Groups
  • Search
  • Today's Posts
  • Mark Forums Read

Latest Modifications

  • [vB 3.8.4] THX - Hack for VB. 3.8.4
    By: bluedog
  • [vB 3.8.4] Cyb - Chatbox V.2.3
    By: bluedog
  • [vB 4.0.x] PHPKD - Advanced Quick...
    By: PHPKD
  • [vB 3.6.x] StopSpam
    By: flappi282
  • [vB 3.8.x] vBulletin Chat Addon for...
    By: 123flashchat

Latest Template Mods

  • [vB 4.0.x] Remove My Profile Link...
    By: Ak Worm
  • [vB 3.8.x] Images DownloadBox...
    By: cRs!MP
  • [vB 3.8.x] Adviertise Mod On Forum...
    By: MG4
  • [vB 3.8.4] Images PassWordBox...
    By: cRs!MP
  • [vB 3.8.4] Footer Follow Ups
    By: Ak Worm

Latest Styles

  • [vB 4.0.x] 4.0.3 - VB4STYLE-TWEETA...
    By: Belon
  • [vB 4.0.x] [4.0.3] vbdesigns.de...
    By: Belon
  • [vB 3.8.4] CompletevB - Skylight
    By: DreadKnight
  • [vB 3.8.3] [vB 3.8.4] Barcelona...
    By: hoiquantinhoc.com
  • [vB 3.8.3] Natures Walk by vBSkin...
    By: Chri5

Latest Graphics

  • [vB ] [anim.]Team Ranks
    By: cRs!MP
  • [vB ] Abstract Circles (3...
    By: cRs!MP
  • [vB ] PlayStation Rank Images
    By: cRs!MP
  • [vB 3.6.12] Heavy Stroked Button...
    By: Shelley
  • [vB ] Minature Ranks.
    By: Shelley
vBulletin Modifications » Support Center » vBulletin Support » Modification Coding » Need a little PHP help please
Reply
Page 2 of 2 < 1 2

 

  • Thread Tools
Old 06-25-2009, 07:48 PM   #11
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Thank you
Reply With Quote
Old 06-26-2009, 04:39 AM   #12
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Ok, a new interesting little problem. I added the option to choose inside/outside U.S. location and works great except for in the thread and email. This is the code I'm using:
Code:
		// Build Emails
		$subject = "Moderator Application";
		$message = "Hello,
	
A new moderator application has just been submitted!

Position applying for: " . $vbulletin->GPC['position_applying'] . ".
Username: " . $vbulletin->GPC['username'] . ".
Additional Usernames: " . $vbulletin->GPC['additional_usernames'] . ".
First Name: " . $vbulletin->GPC['first_name'] . ".
Last Name: " . $vbulletin->GPC['last_name'] . ".
Birthday: " . $vbulletin->GPC['birth_month'] . "/" . $vbulletin->GPC['birth_day'] . "/" . $vbulletin->GPC['birth_year'] . ".
// Check to see if inside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 1)
{
Location: " . $vbulletin->GPC['city'] . ", " . $vbulletin->GPC['state'] . ".
}
// Check to see if outside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 0)
{
Location: " . $vbulletin->GPC['region'] . ", " . $vbulletin->GPC['country'] . ".
}
Why do you want to help this forum:
" . $vbulletin->GPC['why_
The problem is highlighted in bold and it come up in the thread/email like this:
PHP Code:
// Check to see if inside U.S.
if (Array['usml_modapp_instates'] == 1)
{
Location: , .
}
// Check to see if outside U.S.
if (Array['usml_modapp_instates'] == 0)
{
Location: Ashoford, UK.
} 
Any ideas how I can work around this?

Last edited by Redline; 06-26-2009 at 04:41 AM.
Reply With Quote
Old 06-26-2009, 06:33 AM   #13
Michael Biddle
Staff
Michael Biddle's Avatar

Activity Longevity
1/20 18/20
Today Posts
0/3 sssss2818
Location: Anaheim
Age: 22
Michael Biddle is on a distinguished road
Status: Offline Default
Can you paste the entire code.
Support will only be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.3.0 Gold Released with New "Virtual HTML Display" Feature Available for download now

vBSEO Google Sitemap Generator - Version 2.5 Released

Crawlability Network: vBulletin SEO | vBulletin Hackers
Reply With Quote
Old 06-26-2009, 06:57 AM   #14
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
PHP Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # U.S. Military Life Moderator Application Package v1.1.0        # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright © U.S. Military Life 2009                        # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------------------------------------------------------- # ||
|| # http://www.USMilitaryLife.com                          # ||
|| #################################################################### ||
\*======================================================================*/

// ####################### SET PHP ENVIRONMENT ########################### 
error_reporting(E_ALL & ~E_NOTICE); 

// #################### DEFINE IMPORTANT CONSTANTS ####################### 
define('NO_REGISTER_GLOBALS', 1); 
define('THIS_SCRIPT', 'modapp'); // change this depending on your filename 

// ################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array('global'); 

// get special data templates from the datastore 
$specialtemplates = array(); 

// pre-cache templates used by all actions 
$globaltemplates = array( 
    
'moderator_app'
); 

// pre-cache templates used by specific actions 
$actiontemplates = array(); 

// ######################### REQUIRE BACK-END ############################ 
require_once('./global.php');

// ####################################################################### 
// ######################## START MAIN SCRIPT ############################ 
// ####################################################################### 

// Some more definitions
$imp_vars = array(
            
'do' => ''
);

$pages = array(
            
'main',
            
'send'
);
$addresses = explode(",", $vbulletin->options['usml_mod_application_options_emails']);

$imp_vars['do'] = $_REQUEST['do'];

if (!(
in_array($imp_vars['do'], $pages)))
{
    
$imp_vars['do'] = 'main';
}

// Check to see if applications are turned on/off
if ($vbulletin->options['usml_mod_application_options_on'] == 0)
{
    
print_no_permission();
}
// Check usergroup permissions
if (is_member_of($vbulletin->userinfo, explode(',',$vbulletin->options['usml_modapp_ugperms'])))
{
    
print_no_permission();
}
// Check users post count permissions
if ($vbulletin->userinfo[posts] < $vbulletin->options['usml_modapp_pcperms'])
{
    
print_no_permission();
}

// Set-up the navbar
$navbits = array(); 
$navbits[] = 'Moderator Application';

// End boring stuff
// ####################################################################### 

if ($imp_vars['do'] == 'main')
{
    
$navbits = construct_navbits($navbits); 
    eval(
'$navbar = "' . fetch_template('navbar') . '";'); 
    eval(
'print_output("' . fetch_template('moderator_app') . '");');
}

if (
$imp_vars['do'] == 'send')
{
    
$vbulletin->input->clean_array_gpc('p', array(
                        
'position_applying' => TYPE_NOHTML,
                        
'username' => TYPE_NOHTML,
                        
'additional_usernames' => TYPE_NOHTML,
                        
'first_name' => TYPE_NOHTML,
                        
'last_name' => TYPE_NOHTML,
                        
'birth_month' => TYPE_NOHTML,
                        
'birth_day' => TYPE_NOHTML,
                        
'birth_year' => TYPE_NOHTML,
                        
'city' => TYPE_NOHTML,
                        
'state' => TYPE_NOHTML,
                        
'region' => TYPE_NOHTML,
                        
'country' => TYPE_NOHTML,
                        
'why_help' => TYPE_NOHTML,
                        
'skills' => TYPE_NOHTML,
                        
'ever_used_backend' => TYPE_NOHTML,
                        
'know_options' => TYPE_NOHTML,
                        
'moderate_others' => TYPE_NOHTML,
                        
'moderated_forums' => TYPE_NOHTML,
                        
'how_long' => TYPE_NOHTML,
                        
'ever_resigned' => TYPE_NOHTML,
                        
'reason_resigned' => TYPE_NOHTML,
                        
'still_active' => TYPE_NOHTML,
                        
'comments' => TYPE_NOHTML,
                        
'email' => TYPE_NOHTML,
                        
'tel_1' => TYPE_NOHTML
    
));

    
// Check all the variables
    
if ($vbulletin->GPC['position_applying'] == '')
    {
        
$errors[] = 'You did not specify which position you are applying for.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['first_name'] == '')
    {
        
$errors[] = 'You did not specify your first name.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['last_name'] == '')
    {
        
$errors[] = 'You did not specify your last name.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['birth_month'] == '')
    {
        
$errors[] = 'You did not specify your birth month.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['birth_day'] == '')
    {
        
$errors[] = 'You did not specify your birth day.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['birth_year'] == '')
    {
        
$errors[] = 'You did not specify your birth year.';
    }
// Check to see if inside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 1)
{
    
// Check all the variables
    
if ($vbulletin->GPC['city'] == '')
    {
        
$errors[] = 'You did not specify your City.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['state'] == '')
    {
        
$errors[] = 'You did not specify your State.';
    }
}
// Check to see if outside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 0)
{
    
// Check all the variables
    
if ($vbulletin->GPC['region'] == '')
    {
        
$errors[] = 'You did not specify your Country.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['country'] == '')
    {
        
$errors[] = 'You did not specify your Region.';
    }
}
    
// Check all the variables
    
if ($vbulletin->GPC['why_help'] == '')
    {
        
$errors[] = 'You did not specify why you want to help this forum.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['skills'] == '')
    {
        
$errors[] = 'You did not specify what skills you can bring to this forum.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['ever_used_backend'] == '')
    {
        
$errors[] = 'You did not specify if you ever used the backend of a vBulletin forum.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['know_options'] == '')
    {
        
$errors[] = 'You did not specify if you know any of the options.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['moderate_others'] == '')
    {
        
$errors[] = 'You did not specify if you moderate on other forums.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['moderate_others'] == 'Yes' AND $vbulletin->GPC['moderated_forums'] == '')
    {
        
$errors[] = 'You did not specify what forum(s) you moderate.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['moderate_others'] == 'Yes' AND $vbulletin->GPC['how_long'] == '')
    {
        
$errors[] = 'You did not specify how long you have been moderating other forums.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['ever_resigned'] == '')
    {
        
$errors[] = 'You did not specify if you have ever resigned from a staff position.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['ever_resigned'] == 'Yes' AND $vbulletin->GPC['reason_resigned'] == '')
    {
        
$errors[] = 'You did not include a reason wny you resigned from your staff position.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['still_active'] == '')
    {
        
$errors[] = 'You did not specify if you will still be an active member of our community if you do not get the position you have applied for.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['email'] == '' AND $vbulletin->GPC['tel_1'] == '')
    {
        
$errors[] = 'You did not specify an email address or a telephone number, you must specify at least one of the two.';
    }

    
// Print the errors
    
if (count($errors) > 0)
    {
        foreach (
$errors AS $error)
        {            
            
$new_errors .= $error . "<br />\n";
        }
        
        
$errors = "The following errors were found; <br />";
        
$errors .= $new_errors;
        
        
$submit = false;
    } else {
        
$submit = true;
    }
    
    if (
$submit)
    {
        if (
$vbulletin->GPC['email'])
        {
            
$contact = "E-mail: " . $vbulletin->GPC['email'] . ".
"
;
        }
        
        if (
$vbulletin->GPC['tel_1'])
        {
            
$contact .= "Telephone Number: " . $vbulletin->GPC['tel_1'] . ".
"
;
        }

        
// Build Emails
        
$subject = "Moderator Application";
        
$message = "Hello,
    
A new moderator application has just been submitted!

Position applying for: " 
. $vbulletin->GPC['position_applying'] . ".
Username: " 
. $vbulletin->GPC['username'] . ".
Additional Usernames: " 
. $vbulletin->GPC['additional_usernames'] . ".
First Name: " 
. $vbulletin->GPC['first_name'] . ".
Last Name: " 
. $vbulletin->GPC['last_name'] . ".
Birthday: " 
. $vbulletin->GPC['birth_month'] . "/" . $vbulletin->GPC['birth_day'] . "/" . $vbulletin->GPC['birth_year'] . ".
// Check to see if inside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 1)
{
Location: " 
. $vbulletin->GPC['city'] . ", " . $vbulletin->GPC['state'] . ".
}
// Check to see if outside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 0)
{
Location: " 
. $vbulletin->GPC['region'] . ", " . $vbulletin->GPC['country'] . ".
}
Why do you want to help this forum:
" 
. $vbulletin->GPC['why_help'] . ".

What skills can you bring to this forum:
" 
. $vbulletin->GPC['skills'] . ".

Have you ever used the backend of a vBulletin forum: " 
. $vbulletin->GPC['ever_used_backend'] . ".
Do you know any of the options: " 
. $vbulletin->GPC['know_options'] . ".
Do you moderate on other forums: " 
. $vbulletin->GPC['moderate_others'] . ".
If yes, what other forum(s) do you moderate:
" 
. $vbulletin->GPC['moderated_forums'] . ".

How long have you been moderating other forums: " 
. $vbulletin->GPC['how_long'] . ".
Have you ever resigned from a staff position: " 
. $vbulletin->GPC['ever_resigned'] . ".
If yes, please include details/reasons why:
" 
. $vbulletin->GPC['reason_resigned'] . "

If you do not get the position you have applied for, will you still be an active member of our community?: " 
. $vbulletin->GPC['still_active'] . ".
Enter any additional information: 
" 
. $vbulletin->GPC['comments'] . "

" 
. $contact . "
IP Address: " 
. IPADDRESS . "
Host: " 
. @gethostbyaddr(IPADDRESS) . "

Regards,
Your site."
;
        
    
        
// Send Emails
        
if (!class_exists('vB_Mail'))
        {
            require_once(
DIR . '/includes/class_mail.php');
        }
        
        foreach (
$addresses AS $address)
        {
            if (
$vbulletin->options['use_smtp'])
            {
                
$mail =& new vB_SmtpMail($vbulletin);
            }
            else
            {
                
$mail =& new vB_Mail($vbulletin);
            }
        
            
$mail->start($address, $subject, $message, $vbulletin->options['webmasteremail']);
            
$mail->send();
            
            unset(
$mail);
        }

// Check to see if create new thread is enabled
if ($vbulletin->options['usml_modapp_createthread'] == 1)
{
        
// Make a new thread
                
require_once(DIR . '/includes/functions_newpost.php');

        
$forumid = intval($vbulletin->options['usml_modapp_forumid']);
        
$user_id = $vbulletin->userinfo['userid'];
        
$username = $vbulletin->userinfo['username'];

        
$target_foruminfo = fetch_foruminfo($forumid);
        
$newpost = array(
            
'userid' => $user_id,
            
'username' => $username,
            
'message' =>  $message,
            
'title' => 'Mod Application: ' . $vbulletin->GPC['username'],
            
'poststarttime' => time(),
            
'emailupdate' => 0
        
);

        
build_new_post('thread', $target_foruminfo, array(), array(), $newpost, $errors);

        
// Check if any errors during post
        
if (sizeof($errors) > 0)
        {
        
// Post of new thread failed !
        
$error_info = construct_errors($errors);
        
//echo $error_info;
        // do anything you want here - likely to redirect !
        // ...
        
}

        
// Fix forums counters 
        
build_forum_counters($forumid); 
}
        
        
$navbits = construct_navbits($navbits); 
        eval(
'$navbar = "' . fetch_template('navbar') . '";');
        eval(
'print_output("' . fetch_template('moderator_app') . '");');
    } else {
        
$imp_vars['do'] = 'errors';
        
$vbgpc =& $vbulletin->GPC;
        
        
$navbits = construct_navbits($navbits); 
        eval(
'$navbar = "' . fetch_template('navbar') . '";');
        eval(
'print_output("' . fetch_template('moderator_app') . '");');    
    }
}

// ####################################################################### 
// ######################### END MAIN SCRIPT ############################# 
// ####################################################################### 
?>
Thanks MB
Reply With Quote
Old 06-26-2009, 08:29 AM   #15
Idan
Coder
Idan's Avatar

Activity Longevity
0/20 18/20
Today Posts
0/3 sssss1484
Location: Israel
Age: 29
Idan is on a distinguished road
Status: Offline Default
You cannot place the IF condition inside the text block of the assignment.

do the if condition prior to the block and then append second var to it, like this:
PHP Code:

// Check to see if inside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 1)
{
     
$location = "Location: " . $vbulletin->GPC['city'] . ", " . $vbulletin->GPC['state'] ;
}
// Check to see if outside U.S.
if ($vbulletin->options['usml_modapp_instates'] == 0)
{
     
$location = "Location: " . $vbulletin->GPC['region'] . ", " . $vbulletin->GPC['country'] ;
}

$message = "Hello,
    
A new moderator application has just been submitted!

Position applying for: " 
. $vbulletin->GPC['position_applying'] . ".
Username: " 
. $vbulletin->GPC['username'] . ".
Additional Usernames: " 
. $vbulletin->GPC['additional_usernames'] . ".
First Name: " 
. $vbulletin->GPC['first_name'] . ".
Last Name: " 
. $vbulletin->GPC['last_name'] . ".
Birthday: " 
. $vbulletin->GPC['birth_month'] . "/" . $vbulletin->GPC['birth_day'] . "/" . $vbulletin->GPC['birth_year'] . ".
Why do you want to help this forum:
" 
. $vbulletin->GPC['why_help'] . $location ."
What skills can you bring to this forum:
" 
. $vbulletin->GPC['skills'] . "
Have you ever used the backend of a vBulletin forum: " 
. $vbulletin->GPC['ever_used_backend'] . ".
Do you know any of the options: " 
. $vbulletin->GPC['know_options'] . ".
Do you moderate on other forums: " 
. $vbulletin->GPC['moderate_others'] . ".
If yes, what other forum(s) do you moderate:
" 
. $vbulletin->GPC['moderated_forums'] . ".

How long have you been moderating other forums: " 
. $vbulletin->GPC['how_long'] . ".
Have you ever resigned from a staff position: " 
. $vbulletin->GPC['ever_resigned'] . ".
If yes, please include details/reasons why:
" 
. $vbulletin->GPC['reason_resigned'] . "

If you do not get the position you have applied for, will you still be an active member of our community?: " 
. $vbulletin->GPC['still_active'] . ".
Enter any additional information: 
" 
. $vbulletin->GPC['comments'] . "

" 
. $contact . "
IP Address: " 
. IPADDRESS . "
Host: " 
. @gethostbyaddr(IPADDRESS) . "

Regards,
Your site."
; 
Solution to original question
Regards,
Idan.

* Support will only be given via forums !
* If this post solved/aided your problem, please click "mark as aid" / "mark as solution" as explained in here

Last edited by Idan; 06-26-2009 at 08:32 AM.
Reply With Quote
Old 06-26-2009, 08:40 AM   #16
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Once again Idan, you are awesome! Thank you so very much!
Reply With Quote
Old 06-26-2009, 10:00 AM   #17
Michael Biddle
Staff
Michael Biddle's Avatar

Activity Longevity
1/20 18/20
Today Posts
0/3 sssss2818
Location: Anaheim
Age: 22
Michael Biddle is on a distinguished road
Status: Offline Default
Beat me too it!
Support will only be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.3.0 Gold Released with New "Virtual HTML Display" Feature Available for download now

vBSEO Google Sitemap Generator - Version 2.5 Released

Crawlability Network: vBulletin SEO | vBulletin Hackers
Reply With Quote
Old 06-26-2009, 10:34 AM   #18
Idan
Coder
Idan's Avatar

Activity Longevity
0/20 18/20
Today Posts
0/3 sssss1484
Location: Israel
Age: 29
Idan is on a distinguished road
Status: Offline Default
sorry about that :(
saw no reply for 1.5 hours, thought u were alseep, figured wont let the dude wait few hours for reply...
Regards,
Idan.

* Support will only be given via forums !
* If this post solved/aided your problem, please click "mark as aid" / "mark as solution" as explained in here
Reply With Quote
Old 06-26-2009, 10:35 AM   #19
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Its ok. I wasn't planning on releasing the next version until tomorrow afternoon :D
Reply With Quote

Reply
Page 2 of 2 < 1 2

« Help regarding FTp Folder | Tweaking the "Proceed" button »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Show Printable Version Show Printable Version
Email this Page Email this Page

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
Broken PHP with SUSE Update Ken Iovino Announcements 2 06-17-2006 02:14 AM
PHP Vulnerabilities in <= 4.3.9 and <= 5.0.2 Junior Announcements 0 05-11-2005 08:19 AM



All times are GMT. The time now is 05:49 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Transverse Styles
  • Top
  • Archive
  • vBSEO
  • Contact Us
LinkBack
LinkBack URL LinkBack URL
About LinkBacks About LinkBacks
Bookmark & Share
Digg this Thread! Digg this Thread!
Add Thread to del.icio.us Add Thread to del.icio.us
Bookmark in Technorati Bookmark in Technorati
Furl this Thread! Furl this Thread!