Quote:
Originally Posted by M.C.
work perfect to me even in first post in thread...
just small additions i`d love to see (that was in the same hack for vb2.x.x):
- any chance to add small nitification pop-up window to submit delete (just in case that i pushed right button :devious: )
- how can i change that to image or just text link?
|
To change to an image, change
PHP Code:
<input type="submit" name="deletepost" value="<if condition="$deletebutton">delete<else />remove</if>" id="rb_del_soft" tabindex="1" class="button" />
to
PHP Code:
<input type="hidden" name="deletepost" value="<if condition="$deletebutton">delete<else />remove</if>" />
Then, add this below that:
PHP Code:
<input type="image" name="submit" src="image.jpg" />
Replace image.jpg with the path to your image.