Replace "cancel" link to a Button

Everything related to GBook PHP guestbook
Post Reply
Fudeba
Posts: 9
Joined: Sat May 09, 2009 8:01 am

Replace "cancel" link to a Button

Post by Fudeba »

/*************************************
Title: gbook
Version: 1.6
Author: Luciano Sturaro
Demo:
Download:
Website:

Short description:
Replace "cancel" link on view e-mail, delete message,
replay message, view ip and ban ip window to button.

*************************************/

Open gbook.php on text editor and find these lines: 295, 362, 462, 596, 693

On end of this lines, you look this code:


Code: Select all

 | <a href="gbook.php"><?php echo $lang['t11']; ?></a>
Replace code above on end of five lines listed above to this code:

Code: Select all

&nbsp;&nbsp;&nbsp;<input type="button" value="<?php echo $lang['t11']; ?>" onClick="location.href='gbook.php'" />

The result will be like this the image below:

Before:

Image

After:

Image
Post Reply