http://www.fsf.org/ or write * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * */ /* You can modify these guestbook parameters */ // Guestbook administration password $adminpass = "password"; // Guestbook name, top left of the guestbook. You can chose a name or left your guestbook // section short description here // $guestbook_head = "GuestBook"; $guestbook_head = $cms->sections->section_sdesc($section); // Guestbook description, top left of the guestbook. You can chose a name or left your guestbook // section long description here // $gb_desc = "Let your tag here!"; $gb_desc = $cms->sections->section_ldesc($section); // Guestbook admin mail, all new posting will be forwarded to this mail address, // empty to disable. $gb_notify = ""; // Fill with your language pack name. See the "languages" subdirectory for more details. $language = "italian.php"; // This is the list of nations you can select in the location option box when you submit. // See the "locations" subdirectory for more details. $locations = "worldlong.inc"; // Minimum number of words accepted $limit_min_words = "2"; // Maximum number of words accepted $limit_max_words = "2000"; // Cookie banning timeout in minutes. Used to avoid flooding. $timelimit = "3"; // Number of messages per page $perpage = "4"; // Number of page handler $pperpage = "6"; // Guestbook width in pixel (ex. "400") or in % (ex. "65%") $table_width = "580"; // Guestbook height in pixel (ex. "400") or in % (ex. "65%"). You may want to let it emply // so that your guestbook height will be variable!! $table_height = ""; // Guestbook alignment, you may want to let it center, or left, or right. $table_align = "center"; // Guestbook date format. European format: eu; American format: us $dateformat = "eu"; // System information in each page. You may want to let it false $show_sysinfo = false; // Guestbook table name $guestbook_tablename = $cms->dbms->DB_tbl_prefix . "guestbook_main"; // Smilies table name $smilies_tablename = $cms->dbms->DB_tbl_prefix . "guestbook_smilies"; // Badwords table name $badwords_tablename = $cms->dbms->DB_tbl_prefix . "guestbook_badwords"; // Banned IPs table name $bannedips_tablename = $cms->dbms->DB_tbl_prefix . "guestbook_bannedips"; ################################################################################################# # End of configuration ################################################################################################# ?>