The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vB Journal for vBulletin 3.0.3(v1.0.1) Details »» | |||||||||||||||||||||||||
vB Journal v1.0.1 By Antonbomb22(Anthony Scudese) vB Journal 1.5 Beta 1 is now available, click here. Features:
Version 1.0.1:
Features for later versions:
Demos: Add-Ons(I Will not give support for these because i did not create them):
Side Credits:
Notes:
Support: ~READ FIRST POST COMPLETELY BEFORE POSTING PROBLEMS AND MAKE SURE YOU DID ALL EDITS AND REQUIREMENTS!~ Support may be denied if provided files are edited/modified and support may be stopped at any time due to any circumstances. If you should run into any errors, problems, confusion, or maybe even a suggestion please foward them to one of the following places:
Contents of Zip:
I have also provided several screenshots Please click install If you are missing phrases or blank spaces in the usergroup manager click here. Updates/Fixes:
Supporters / CoAuthors Show Your Support
|
Comments |
#362
|
||||
|
||||
Quote:
|
#363
|
||||
|
||||
Can you use the global vB Variable "IPADDRESS" instead of directly using the REMOTE_ADDR server variable please.
Also, check that showjournal, showcomments & showentry do not cause errors if they have no "j" or "e" parameter supplied. |
#364
|
||||
|
||||
Quote:
|
#365
|
||||
|
||||
Quote:
|
#366
|
|||
|
|||
Question
Since you're going to be releasing an update soon... I have a question, will the update also include template updates, or just file (journal.php / journaladmin.php) updates? Just want to double-check LOL Cuz I've modified the templates slightly to my satisfcation. HoC |
#367
|
||||
|
||||
ok so i wanted private entries to show up as private to the user concerned so that you could tell them apart this is my solution if anyones interested
replace journal_entrybits template with HTML Code:
<if condition="$entry[private]"> <a name="e$entry[entry_id]"><table class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" border="0" align="center" width="100%"> <tr> <td class="thead" align="$stylevar[left]"><div style="float:right"><a href="#e$entry[entry_id]"># $enum</a></div><font color="red">[PRIVATE]</font> <a href="journal.php?do=showentry&e=$entry[entry_id]">$entry[entrytitle]</a></td> </tr> <tr> <td class="alt1" align="$stylevar[right]"><div class="smallfont">Date Posted: $entry[date] at <span class="time">$entry[time]</span> <if condition="$canview[comments]"><a href="journal.php?do=showcomments&j=$j&e=$entry[entry_id]"></if>Comments ($entry[comments])<if condition="$canview[comments]"></a></if></div></td> </tr> <tr> <td class="alt2" align="$stylevar[left]"><if condition="$show[mood] OR $entry[mood]>0"><div class="smallfont">Mood: <img src="$entry[mood_image]" alt="$entry[mood_name]" /></div><hr /></if>$entry[entrytext]</td> </tr> <tr> <td class="alt1" align="$stylevar[right]"><div style="float:left"><!-- <a href="journal.php?do=report&e=$entry[entry_id]"><img src="$stylevar[imgdir_button]/report.gif" alt="Report This Journal Entry to an Administrator" border="0" /></a> --><if condition="$bbuserinfo[usergroupid]==6"><img src="$stylevar[imgdir_button]/ip.gif" border="0" title="Ip: $entry[ipaddress]" /></if><if condition="$can[comment] AND $canview[comments]"><a href="journal.php?do=showcomments&j=$j&e=$entry[entry_id]"><img src="$stylevar[imgdir_button]/discuss.gif" border="0" alt="Discuss This Entry" /></a></if></div><if condition="$caneditown[entry] AND $bbuserinfo[userid]==$journalinfo[journalist_id] OR $bbuserinfo[usergroupid]==6"><a href="journal.php?do=editentry&j=$j&e=$entry[entry_id]"><img src="$stylevar[imgdir_button]/edit.gif" border="0" /></a></if><if condition="$candeleteown[entry] AND $bbuserinfo[userid]==$journalinfo[journalist_id] OR $bbuserinfo[usergroupid]==6"><a href="journal.php?do=delete&j=$j&e=$entry[entry_id]&t=e"><img src="$stylevar[imgdir_button]/delete.gif" border="0" /></a></if></td> </tr> </table></a> <br /> <else /> <a name="e$entry[entry_id]"><table class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="$stylevar[cellpadding]" border="0" align="center" width="100%"> <tr> <td class="thead" align="$stylevar[left]"><div style="float:right"><a href="#e$entry[entry_id]"># $enum</a></div><a href="journal.php?do=showentry&e=$entry[entry_id]">$entry[entrytitle]</a></td> </tr> <tr> <td class="alt1" align="$stylevar[right]"><div class="smallfont">Date Posted: $entry[date] at <span class="time">$entry[time]</span> <if condition="$canview[comments]"><a href="journal.php?do=showcomments&j=$j&e=$entry[entry_id]"></if>Comments ($entry[comments])<if condition="$canview[comments]"></a></if></div></td> </tr> <tr> <td class="alt2" align="$stylevar[left]"><if condition="$show[mood] OR $entry[mood]>0"><div class="smallfont">Mood: <img src="$entry[mood_image]" alt="$entry[mood_name]" /></div><hr /></if>$entry[entrytext]</td> </tr> <tr> <td class="alt1" align="$stylevar[right]"><div style="float:left"><!-- <a href="journal.php?do=report&e=$entry[entry_id]"><img src="$stylevar[imgdir_button]/report.gif" alt="Report This Journal Entry to an Administrator" border="0" /></a> --><if condition="$bbuserinfo[usergroupid]==6"><img src="$stylevar[imgdir_button]/ip.gif" border="0" title="Ip: $entry[ipaddress]" /></if><if condition="$can[comment] AND $canview[comments]"><a href="journal.php?do=showcomments&j=$j&e=$entry[entry_id]"><img src="$stylevar[imgdir_button]/discuss.gif" border="0" alt="Discuss This Entry" /></a></if></div><if condition="$caneditown[entry] AND $bbuserinfo[userid]==$journalinfo[journalist_id] OR $bbuserinfo[usergroupid]==6"><a href="journal.php?do=editentry&j=$j&e=$entry[entry_id]"><img src="$stylevar[imgdir_button]/edit.gif" border="0" /></a></if><if condition="$candeleteown[entry] AND $bbuserinfo[userid]==$journalinfo[journalist_id] OR $bbuserinfo[usergroupid]==6"><a href="journal.php?do=delete&j=$j&e=$entry[entry_id]&t=e"><img src="$stylevar[imgdir_button]/delete.gif" border="0" /></a></if></td> </tr> </table></a> <br /> </if> |
#368
|
|||
|
|||
Quote:
Many thanks, Matt |
#369
|
||||
|
||||
Quote:
FYI: It is not always equivelent to remote_addr (if people have proxy detector or real ip detector hacks installed). msimplay : I see I am too late for you - I did a similar thing, but added the "private" tag to the left hand side of the next line (the date posted line). |
#370
|
||||
|
||||
Quote:
|
#371
|
||||
|
||||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|