Civilization: The Expansion Project

A strategy game inspired by Advanced Civilization™


All times are UTC


Post new topic Reply to topic  [ 2 posts ] 
phpbb
Author Message
Post phpbb
I'm not familiar with phpbb, but how hard would it be to upgrade this forum to a slightly newer version? There is one feature that is driving me nuts. I usually deal with forums by ctrl-clicking on topic to open them in new tabs, but this forum (alone among the phpbb I deal with) forces the current window to go to the forum also. I'm assuming that that is due to the
Code:
onclick="window.location.href='viewforum.php?f=7

part of the td, which doesn't appear to be present in other fora.[/code]


VIP
Profile
Send private message
Joined:
2003-07-01 15:19:33
Posts:
217
Location:
USA
Post 
Why complain when you can fix. Below is a Greasemonkey script that cleans up the problem (I didn't see any side effects, but there may be some due to the class "row1" getting reused alot.

Code:
// CivProject link cleaner
// version 0.1
// 2008-12-12
// Copyright (c) 2008, Jeffrey McBeth
// ==UserScript==
// @name          CivProject Fixer
// @namespace     http://diveintogreasemonkey.org/download/
// @description   removes all the onclick markers from the td elements
// @include       http://www.civproject.net/forum/*
// ==/UserScript==

var allTD;
allTD = document.evaluate(
   "//td[@class='row1']",
   document,
   null,
   XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
   null);

for(var i = 0; i < allTD.snapshotLength; i++)
{
   thisTD = allTD.snapshotItem(i);
   thisTD.removeAttribute('onclick');
}


VIP
Profile
Send private message
Joined:
2003-07-01 15:19:33
Posts:
217
Location:
USA
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
CivProject phpBB3 template by Jon Severinsson
Based on Revolution Pro phpBB3 template by Brian Gardner Media, LLC