Parent Directory
|
Revision Log
|
Revision Graph
Updated the phpbb2drupal_import.php -Removed some major bugs -Imports Polls Added redirection scripts -viewtopic.php -stories.php
| 1 | <?php |
| 2 | |
| 3 | include_once 'includes/bootstrap.inc'; |
| 4 | include_once 'includes/common.inc'; |
| 5 | |
| 6 | fix_gpc_magic(); |
| 7 | |
| 8 | if ($_GET['story']) { |
| 9 | $story = $_GET['story']; |
| 10 | $nid = db_result(db_query("SELECT nid |
| 11 | FROM {drupal_redirect} |
| 12 | WHERE Rid = '%s'", $story)); |
| 13 | |
| 14 | drupal_goto("node/$nid"); |
| 15 | } |
| 16 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |