The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
dear all,
i want to use post date of thread in my title automatically when a user post any thread. any body guide me which variable should be used to display post date in this code. HTML Code:
$thread['title'] = fetch_censored_text($thread['title']) |
|
#2
|
||||
|
||||
|
I am sure there may be a way, but may I ask why you would want such a thing?
|
|
#3
|
|||
|
|||
|
i want to make my title unique many users post thread in my forum with same title sometimes so i want to make by title unique by adding date attribute with titile
|
|
#4
|
|||
|
|||
|
You could try this:
Code:
$thread['title'] = fetch_censored_text($thread['title']) . ' ' .
vbdate($vbulletin->options['dateformat'] . ' ' . $vbulletin->options['timeformat'], $thread['dateline'])
|
| Благодарность от: | ||
| ymcus | ||
![]() |
|
|