Ticket #671: reprocess-slugs.php
| File reprocess-slugs.php, 351 bytes (added by mdawaffe, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | require( 'bb-load.php' ); |
| 4 | |
| 5 | require( 'bb-admin/upgrade-functions.php' ); |
| 6 | |
| 7 | echo "Starting to reprocess slugs. This may take some time.<br /><br />\n\n"; |
| 8 | |
| 9 | $bbdb->query( "UPDATE $bbdb->topics SET topic_slug = ''" ); |
| 10 | $bbdb->query( "UPDATE $bbdb->forums SET forum_slug = ''" ); |
| 11 | |
| 12 | bb_upgrade_process_all_slugs(); |
| 13 | |
| 14 | echo "Done reprocessing slugs."; |
| 15 | |
| 16 | ?> |