vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   edit post subject & icon? (https://vborg.vbsupport.ru/showthread.php?t=28369)

Peter Porker 09-18-2001 05:09 PM

I've done a search, and near as I can tell, this doesn't exist for v2.0.3

Can someone come up with a hack that would allow users to edit the subject heading and icon of their own posts (and if the post is the thread-starter, also have it update the thread title)?

I had devised my own hack for this in v1.1.6, but I'm having no success at all with v2.0.3 and I suspect I'm not the only one who would find this useful.

As a side-note, if someone attempts this, please watch out that an edited reply does not change the subject heading in the post which starts a thread...a small snag I ran into on the earlier version (I solved it, but it was a snag none the less).

I'd just like to be able to update thread-starting titles & icons, that's all.

Hope I haven't missed the obvious.... ;)

Admin 09-18-2001 05:16 PM

For posts (non-thread-starters) this is possible.

The thing about threads is that title and icon are stored in two tables, post and thread.
In the post - for displaying on showthread.
And in the thread table - for displaying on forumdisplay.

This can probably be solved in no time.

Admin 09-18-2001 05:22 PM

In editpost.php, replace this:
PHP Code:

  $DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
  
indexpost($postid); 

with
PHP Code:

  if ($isfirst) {
    
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."',iconid='$iconid' WHERE postid='$postid'");
  }
  
$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
  
indexpost($postid); 

that should work.

Peter Porker 09-18-2001 06:09 PM

WOW!!! Very very close! The rest of it was obvious after you cleared away the cobwebs for me...

The working substitution is acually like this:

replace this:
PHP Code:

$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
indexpost($postid); 

with this:
PHP Code:

if ($isfirst) {
  
$DB_site->query("UPDATE post SET title='".addslashes(htmlspecialchars($title))."',iconid='$iconid' WHERE postid='$postid'");
  
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."',iconid='$iconid' WHERE threadid='$threadid'");
  }
  
$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
  
indexpost($postid); 

That will allow thread titles & icons to be edited without being affected by similarly edited replies.
Both work perfectly now...THANKS A BUNCH, DUDE!!!...my headache is fading already. :D


All times are GMT. The time now is 09:05 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01029 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete