Sorry to double post in my own thread, but I have a question to those few who are actually using this mod. And also the instructions to get it working if you didn't read the readme.
As I'm working on the much more efficient v1.2.0, I think it's possible to have the installer/another page do all the file edits automatically, but is it that unfair to ask people to open the vBulletin PHP files in their FTP clients, search for the lines:
PHP Code:
$navbits = construct_navbits($navbits);
or in vbJournal's journal.php:
PHP Code:
$navbits= construct_navbits($navbits);
(I hope that's the only addon that doesn't use spaces appropriately)
Would it even be wise to have automated file edits add:
PHP Code:
($hook = vBulletinHook::fetch_hook('Navbits_Process')) ? eval($hook) : false;
before those lines? It seems to me that manual edits would be safer, that way if the code gets mangled you sort of know what changed. But I have seen people groaning over 1 measly file edit in other threads.
Does anyone have any thoughts?