I'd love this hack, but it's conflicting with the
Text Message User on PM hack I already have installed.
I believe the conflict is coming in the inclues/init.php changes. Specifically the change in this hack:
Code:
Find: 'canthreadrate' => 65536,
'isalwaysmoderated' => 131072,
'canseedelnotice' => 262144
);
Replace with:
'canthreadrate' => 65536,
'isalwaysmoderated' => 131072,
'canseedelnotice' => 262144,
// ================================================= \\
// == [ ALLOW GROUP TO READ TITLE / NOT CONTENT - GTP BEGIN ]
'gtpcanreadcontent' => 524288,
// == [ 00-00-2004 - GTP END ]
// ================================================= \\
);
conflicting with the change in the includes/init.php in "txt msg on pm":
Code:
$_USEROPTIONS = array(
'showsignatures' => 1,
'showavatars' => 2,
'showimages' => 4,
'coppauser' => 8,
'adminemail' => 16,
'showvcard' => 32,
'dstauto' => 64,
'dstonoff' => 128,
'showemail' => 256,
'invisible' => 512,
'showreputation' => 1024,
'receivepm' => 2048,
'emailonpm' => 4096,
'txtmsgonpm' => 8192,
'hasaccessmask' => 16384,
//'emailnotification' => 32768, // this value is now handled by the user.autosubscribe field
'postorder' => 65536,
);
If I change the includes/init.php file as directed in this "text message on pm" hack, it causes *everybody* (including those with access via masks) to receive the warning generated by the "allow users to read title but not posts" hack.
Anyone have a clue why the conflict is occurring; and more importantly how I could have both hacks working without the current conflict?