Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Remove keywords (Re: Remove functions)  (Read 8224 times)

0 Members and 1 Guest are viewing this topic.

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Remove keywords (Re: Remove functions)
« on: February 24, 2006, 01:11:31 pm »

hi there,
i would like to remove the keyword-function. is there a possibility to switch it off??
Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Remove keywords (Re: Remove functions)
« Reply #1 on: February 24, 2006, 03:09:01 pm »

ok, no worries.
i already fixed that problem by putting "// " in front of every information regarding "keywords" in theme/sample/theme.php.
sorry for replying in an "solved" marked folder. i saw it too late.

Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Remove keywords (Re: Remove functions)
« Reply #2 on: February 24, 2006, 06:08:07 pm »

What's wrong with the config setting that enables/disables keywords? You're refering to something completely else than the original poster. Replying to threads that are marked as "solved" is not a bright idea either. That's why I split your replies to http://forum.coppermine-gallery.net/index.php?topic=25249.0 into a separate thread.
Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Re: Remove keywords (Re: Remove functions)
« Reply #3 on: February 26, 2006, 12:32:41 pm »

in my configurations there is no enabling/disabling keywords. i can only find  "Enable clickable keywords in search" but that doesn`t disable the hole keyword-function.
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Remove keywords (Re: Remove functions)
« Reply #4 on: February 26, 2006, 11:34:19 pm »

what does it then?
Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Re: Remove keywords (Re: Remove functions)
« Reply #5 on: February 27, 2006, 10:18:00 am »

it enables / disables keywords in the search-function. but you still have the possibility to give each pic keywords in the uploading-process. and because there wound be 100s of pics on my page, i wanted to disable keywords in general to not confuse my visitors who could be kind of affraid of the internet...

Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Remove keywords (Re: Remove functions)
« Reply #6 on: March 01, 2006, 09:47:12 am »

remove the keywords box in upload.php then, find
Code: [Select]
array($lang_upload_php['keywords'], 'keywords', 0, 255, 1),and comment it out by adding two slashes in front of that line (not tested though).
Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Re: Remove keywords (Re: Remove functions)
« Reply #7 on: March 12, 2006, 03:21:08 pm »

i did that and it works fine. it doesn`t ask for keywords anymore in the upload. but in the picture-info (shown in imagedisplay) it`s still there. and the problem is that the answer from custom-field image description 1 is shown as a keyword there. the answer from custom-field-image descr. 2 is displayed as answer from c.-f.-i.-d. 1 there, from c.-f.-i.-d. 3 is displayed as answer from 2 ...  so, answer from c.f.i.d.4 is always 0 (zero) . here is my image-display.php- code. i can not find the reason
Code: [Select]
<?php
/*************************
  Coppermine Photo Gallery
  ************************
  Copyright (c) 2003-2005 Coppermine Dev Team
  v1.1 originaly written by Gregory DEMAR

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.
  ********************************************
  Coppermine version: 1.4.3
  $Source: /cvsroot/coppermine/stable/displayimage.php,v $
  $Revision: 1.19 $
  $Author: nibbler999 $
  $Date: 2005/12/17 01:55:37 $
**********************************************/

define('IN_COPPERMINE'true);
define('DISPLAYIMAGE_PHP'true);
define('INDEX_PHP'true);
//define('SMILIES_PHP', true);

require('include/init.inc.php');

if (!
USER_ID && $CONFIG['allow_unlogged_access'] == 0) {
    
$redirect $redirect "login.php";
    
header("Location: $redirect");
    exit();
}

if (
$CONFIG['enable_smilies']) include("include/smilies.inc.php");

$breadcrumb '';
$breadcrumb_text '';
$cat_data = array();

if(
$CONFIG['read_exif_data'] ){
        include(
"include/exif_php.inc.php");
}
if(
$CONFIG['read_iptc_data'] ){
        include(
"include/iptc.inc.php");
}


/**
 * Local functions definition
 */

# Sanitize the data - to fix the XSS vulnerability - Aditya
function sanitize_data(&$value$key)
{
if (is_array($value)) {
array_walk($value'sanitize_data');
} else {
# sanitize against sql/html injection; trim any nongraphical non-ASCII character:
$value trim(htmlentities(strip_tags(trim($value,"\x7f..\xff\x0..\x1f")),ENT_QUOTES));
}
}
function 
html_picture_menu()
{
    global 
$lang_display_image_php$CURRENT_PIC_DATA$CURRENT_ALBUM_DATA$CONFIG;

    
$mime_content cpg_get_type($CURRENT_PIC_DATA['filename']);
    
$picmenu '';

  if (
false) { //(!($mime_content['content']=='image')) {
    
$picmenu = <<<EOT
     <a href="#" onclick="return MM_openBrWindow('setplayer.php?={$mime_content['extension']}','Set_Player','scrollbars=no,toolbar=no,status=no,resizable=no')" class="admin_menu" >{$lang_display_image_php['set_player']}</a>
EOT;
  }

  if ((
USER_ADMIN_MODE && $CURRENT_ALBUM_DATA['category'] == FIRST_USER_CAT USER_ID) || ($CONFIG['users_can_edit_pics'] && $CURRENT_PIC_DATA['owner_id'] == USER_ID && USER_ID != 0) || GALLERY_ADMIN_MODE) {
    
$picmenu .= <<<EOT
     <a href="javascript:;" onclick="return MM_openBrWindow('picEditor.php?id={$CURRENT_PIC_DATA['pid']}','Crop_Picture','scrollbars=yes,toolbar=no,status=yes,resizable=yes')" class="admin_menu" >{$lang_display_image_php['crop_pic']}</a> <a href="editOnePic.php?id={$CURRENT_PIC_DATA['pid']}&amp;what=picture"  class="admin_menu">{$lang_display_image_php['edit_pic']}</a> <a href="delete.php?id={$CURRENT_PIC_DATA['pid']}&amp;what=picture"  class="admin_menu" onclick="return confirm('{$lang_display_image_php['confirm_del']}'); return false; ">{$lang_display_image_php['del_pic']}</a>
EOT;
  }

  return 
$picmenu;
}

// Display picture information
function html_picinfo()
{
    global 
$CONFIG$CURRENT_PIC_DATA$CURRENT_ALBUM_DATA$THEME_DIR$FAVPICS;
    global 
$album$lang_picinfo$lang_display_image_php$lang_byte_units$lastup_date_fmt;

    if (
$CURRENT_PIC_DATA['owner_id'] && $CURRENT_PIC_DATA['owner_name']) {
        
$owner_link '<a href ="profile.php?uid=' $CURRENT_PIC_DATA['owner_id'] . '">' $CURRENT_PIC_DATA['owner_name'] . '</a> ';
    } else {
        
$owner_link '';
    }

    if (
GALLERY_ADMIN_MODE && $CURRENT_PIC_DATA['pic_raw_ip']) {
        if (
$CURRENT_PIC_DATA['pic_hdr_ip']) {
            
$ipinfo ' (' $CURRENT_PIC_DATA['pic_hdr_ip'] . '[' $CURRENT_PIC_DATA['pic_raw_ip'] . ']) / ';
        } else {
            
$ipinfo ' (' $CURRENT_PIC_DATA['pic_raw_ip'] . ') / ';
        }
    } else {
        if (
$owner_link) {
            
$ipinfo '/ ';
        } else {
            
$ipinfo '';
        }
    }

    
$info[$lang_picinfo['Filename']] = htmlspecialchars($CURRENT_PIC_DATA['filename']);
    
$info[$lang_picinfo['Album name']] = '<span class="alblink">' $owner_link $ipinfo '<a href="thumbnails.php?album=' $CURRENT_PIC_DATA['aid'] . '">' $CURRENT_ALBUM_DATA['title'] . '</a></span>';

    if (
$CURRENT_PIC_DATA['votes'] > 0) {
        if (
defined('THEME_HAS_RATING_GRAPHICS')) {
            
$prefix $THEME_DIR;
        } else {
            
$prefix '';
        }
        if (
GALLERY_ADMIN_MODE) {
          
$width 800;
          
$height 500;
        } else {
          
$width 400;
          
$height 250;
        }

        
$detailsLink $CONFIG['vote_details'] ? ' (<a href="#" onclick="MM_openBrWindow(\'stat_details.php?type=vote&amp;pid='.$CURRENT_PIC_DATA['pid'].'&amp;sort=sdate&amp;dir=&amp;sdate=1&amp;ip=1&amp;rating=1&amp;referer=1&amp;browser=1&amp;os=1\',\'\',\'resizable=yes,width='.$width.',height='.$height.',top=50,left=50,scrollbars=yes\'); return false;">'.$lang_picinfo['details'].'</a>)' '';
        
$info[sprintf($lang_picinfo['Rating'], $CURRENT_PIC_DATA['votes'])] = '<img src="' $prefix 'images/rating' round($CURRENT_PIC_DATA['pic_rating'] / 2000) . '.gif" align="middle" alt="" />'.$detailsLink;
    }

    if (
$CURRENT_PIC_DATA['keywords'] != "") {
        
$info[$lang_picinfo['Keywords']] = '<span class="alblink">' preg_replace("/(\S+)/""<a href=\"thumbnails.php?album=search&amp;search=\\1\">\\1</a>" $CURRENT_PIC_DATA['keywords']) . '</span>';
    }

    for (
$i 1$i <= 4$i++) {
        if (
$CONFIG['user_field' $i '_name']) {
            if (
$CURRENT_PIC_DATA['user' $i] != "") {
                
$info[$CONFIG['user_field' $i '_name']] = make_clickable($CURRENT_PIC_DATA['user' $i]);
            }
        }
    }

    
$info[$lang_picinfo['File Size']] = ($CURRENT_PIC_DATA['filesize'] > 10240 ? ($CURRENT_PIC_DATA['filesize'] >> 10) . '&nbsp;' $lang_byte_units[1] : $CURRENT_PIC_DATA['filesize'] . '&nbsp;' $lang_byte_units[0]);
    
$info[$lang_picinfo['File Size']] = '<span dir="ltr">' $info[$lang_picinfo['File Size']] . '</span>';
    
$info[$lang_picinfo['Date Added']] = localised_date($CURRENT_PIC_DATA['ctime'],$lastup_date_fmt);
    
$info[$lang_picinfo['Dimensions']] = sprintf($lang_display_image_php['size'], $CURRENT_PIC_DATA['pwidth'], $CURRENT_PIC_DATA['pheight']);
    
$detailsLink = ($CURRENT_PIC_DATA['hits'] && $CONFIG['vote_details'] && GALLERY_ADMIN_MODE) ? ' (<a href="#" onclick="MM_openBrWindow(\'stat_details.php?type=hits&amp;pid='.$CURRENT_PIC_DATA['pid'].'&amp;sort=sdate&amp;dir=&amp;sdate=1&amp;ip=1&amp;search_phrase=1&amp;referer=1&amp;browser=1&amp;os=1\',\'\',\'resizable=yes,width=800,height=500,top=50,left=50,scrollbars=yes\'); return false;">'.$lang_picinfo['details'].'</a>)' '';
    
$info[$lang_picinfo['Displayed']] = sprintf($lang_display_image_php['views'], $CURRENT_PIC_DATA['hits']);
    
$info[$lang_picinfo['Displayed']] .= $detailsLink;

    
$path_to_pic $CONFIG['fullpath'] . $CURRENT_PIC_DATA['filepath'] . $CURRENT_PIC_DATA['filename'];

    if (
$CONFIG['read_exif_data']) $exif exif_parse_file($path_to_pic);

    if (isset(
$exif) && is_array($exif)) {
array_walk($exif'sanitize_data');
        
$info array_merge($info,$exif);
    }

    if (
$CONFIG['read_iptc_data']) $iptc get_IPTC($path_to_pic);

    if (isset(
$iptc) && is_array($iptc)) {
array_walk($iptc'sanitize_data');
        if (isset(
$iptc['Title'])) $info[$lang_picinfo['iptcTitle']] = $iptc['Title'];
        if (isset(
$iptc['Copyright'])) $info[$lang_picinfo['iptcCopyright']] = $iptc['Copyright'];
        if (!empty(
$iptc['Keywords'])) $info[$lang_picinfo['iptcKeywords']] = implode(' ',$iptc['Keywords']);
        if (isset(
$iptc['Category'])) $info[$lang_picinfo['iptcCategory']] = $iptc['Category'];
        if (!empty(
$iptc['SubCategories'])) $info[$lang_picinfo['iptcSubCategories']] = implode(' ',$iptc['SubCategories']);
    }
    
// Create the absolute URL for display in info
    // $info[$lang_picinfo['URL']] = '<a href="' . $CONFIG["ecards_more_pic_target"] . (substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . '" >' . $CONFIG["ecards_more_pic_target"] . (substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') . basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . '</a>';
    // with subdomains the variable is $_SERVER["SERVER_NAME"] does not return the right value instead of using a new config variable I reused $CONFIG["ecards_more_pic_target"] no trailing slash in the configure
    // Create the add to fav link
    // if (!in_array($CURRENT_PIC_DATA['pid'], $FAVPICS)) {
    //    $info[$lang_picinfo['addFavPhrase']] = "<a href=\"addfav.php?pid=" . $CURRENT_PIC_DATA['pid'] . "\" >" . $lang_picinfo['addFav'] . '</a>';
    //} else {
    //    $info[$lang_picinfo['addFavPhrase']] = "<a href=\"addfav.php?pid=" . $CURRENT_PIC_DATA['pid'] . "\" >" . $lang_picinfo['remFav'] . '</a>';
    //}

    /**
     * Filter file information
     */
    
$info CPGPluginAPI::filter('file_info',$info);

    return 
theme_html_picinfo($info);
}

function 
get_subcat_data($parent$level)
{
    global 
$CONFIG$ALBUM_SET_ARRAY;

    
$result cpg_db_query("SELECT cid, name, description FROM {$CONFIG['TABLE_CATEGORIES']} WHERE parent = '$parent'");
    if (
mysql_num_rows($result) > 0) {
        
$rowset cpg_db_fetch_rowset($result);
        foreach (
$rowset as $subcat) {
            
$result cpg_db_query("SELECT aid FROM {$CONFIG['TABLE_ALBUMS']} WHERE category = {$subcat['cid']}");
            
$album_count mysql_num_rows($result);
            while (
$row mysql_fetch_array($result)) {
                
$ALBUM_SET_ARRAY[] = $row['aid'];
            } 
// while
        
}
        if (
$level 1get_subcat_data($subcat['cid'], $level -1);
    }
}

/**
 * Main code
 */

$pos = isset($_GET['pos']) ? (int)$_GET['pos'] : 0;

/**
 * Hack added by tarique to prevent incorrect picture being seen on last view or last uploaded
 */

$pid = isset($_GET['pid']) ? (int)$_GET['pid'] : 0;

$cat = isset($_GET['cat']) ? (int)$_GET['cat'] : 0;
$album = isset($_GET['album']) ? $_GET['album'] : '';
// Build the album set if required
/*
//disabled by donnoman
if (!is_numeric($album) && $cat) { // Meta albums, we need to restrict the albums to the current category
    if ($cat < 0) {
        $ALBUM_SET .= 'AND aid IN (' . (- $cat) . ') ';
    } else {
        $ALBUM_SET_ARRAY = array();
        if ($cat == USER_GAL_CAT)
            $where = 'category > ' . FIRST_USER_CAT;
        else
            $where = "category = '$cat'";

        $result = cpg_db_query("SELECT aid FROM {$CONFIG['TABLE_ALBUMS']} WHERE $where");
        while ($row = mysql_fetch_array($result)) {
            $ALBUM_SET_ARRAY[] = $row['aid'];
        } // while
        get_subcat_data($cat, $CONFIG['subcat_level']);
        // Treat the album set
        if (count($ALBUM_SET_ARRAY)) {
            $set = '';
            foreach ($ALBUM_SET_ARRAY as $album_id) $set .= ($set == '') ? $album_id : ',' . $album_id;
            $ALBUM_SET .= "AND aid IN ($set) ";
        }
    }
}
//disabled by donnoman
*/
//get_meta_album_set in functions.inc.php will populate the $ALBUM_SET instead; matches $META_ALBUM_SET.
get_meta_album_set($cat,$ALBUM_SET);
$META_ALBUM_SET $ALBUM_SET//displayimage uses $ALBUM_SET but get_pic_data in functions now uses $META_ALBUM_SET

// Retrieve data for the current picture
if ($pos || $pid 0) {
    
$pid = ($pos 0) ? -$pos $pid;
    
$result cpg_db_query("SELECT aid from {$CONFIG['TABLE_PICTURES']} WHERE pid='$pid$ALBUM_SET LIMIT 1");
    if (
mysql_num_rows($result) == 0cpg_die(ERROR$lang_errors['non_exist_ap'], __FILE____LINE__);
    
$row mysql_fetch_array($result);
    
$album $row['aid'];
    
$pic_data get_pic_data($album$pic_count$album_name, -1, -1false);
    for(
$pos 0$pic_data[$pos]['pid'] != $pid && $pos $pic_count$pos++);
    
$pic_data get_pic_data($album$pic_count$album_name$pos1false);
    
$CURRENT_PIC_DATA $pic_data[0];

} elseif (isset(
$_GET['pos'])) {
    
$pic_data get_pic_data($album$pic_count$album_name$pos1false);
    if (
$pic_count == 0) {
        
cpg_die(INFORMATION$lang_errors['no_img_to_display'], __FILE____LINE__);
    } elseif (
count($pic_data) == && $pos >= $pic_count) {
        
$pos $pic_count 1;
        
$human_pos $pos 1;
        
$pic_data get_pic_data($album$pic_count$album_name$pos1false);
    }
    
$CURRENT_PIC_DATA $pic_data[0];
}

// Retrieve data for the current album
if (isset($CURRENT_PIC_DATA)) {
    
$result cpg_db_query("SELECT title, comments, votes, category, aid FROM {$CONFIG['TABLE_ALBUMS']} WHERE aid='{$CURRENT_PIC_DATA['aid']}' LIMIT 1");
    if (!
mysql_num_rows($result)) cpg_die(CRITICAL_ERRORsprintf($lang_errors['pic_in_invalid_album'], $CURRENT_PIC_DATA['aid']), __FILE____LINE__);
    
$CURRENT_ALBUM_DATA mysql_fetch_array($result);

    if (
is_numeric($album)) {
        
$cat = - $album;
        
$actual_cat $CURRENT_ALBUM_DATA['category'];
        
breadcrumb($actual_cat$breadcrumb$breadcrumb_text);
        
$cat = - $album;
    } else {
        
$actual_cat $CURRENT_ALBUM_DATA['category'];
        
breadcrumb($actual_cat$breadcrumb$breadcrumb_text);
    }
}

if (isset(
$_GET['fullsize'])) {
    
theme_display_fullsize_pic();
    
ob_end_flush();
} elseif (isset(
$_GET['slideshow'])) {
    
theme_slideshow();
    
ob_end_flush();
} else {
    if (!isset(
$_GET['pos'])) cpg_die(ERROR$lang_errors['non_exist_ap'], __FILE____LINE__);
    
$picture_title $CURRENT_PIC_DATA['title'] ? $CURRENT_PIC_DATA['title'] : strtr(preg_replace("/(.+)\..*?\Z/""\\1"htmlspecialchars($CURRENT_PIC_DATA['filename'])), "_"" ");

    
$nav_menu theme_html_img_nav_menu();
    
$picture theme_html_picture();
    
$votes theme_html_rating_box();
    
$pic_info html_picinfo();
    
$comments theme_html_comments($CURRENT_PIC_DATA['pid']);
    
// if ($CURRENT_PIC_DATA['keywords']) { $meta_keywords = "<meta name=\"keywords\" content=\"".$CURRENT_PIC_DATA['keywords']."\"/>"; }
        //$meta_nav .= "<link rel=\"alternate\" type=\"text/xml\" title=\"RSS feed\" href=\"rss.php\" />
       // ";
        
$meta_keywords .= $meta_nav;
    
pageheader($album_name '/' $picture_title$meta_keywordsfalse);
    
// Display Breadcrumbs
    
if ($breadcrumb && !(strpos($CONFIG['main_page_layout'],"breadcrumb")===false)) {
        
theme_display_breadcrumb($breadcrumb$cat_data);
    }
    
// Display Filmstrip if the album is not search
    
if ($album != 'search') {
        
$film_strip display_film_strip($album, (isset($cat) ? $cat 0), $postrue);
    }
    
CPGPluginAPI::filter('post_breadcrumb',null);
    
theme_display_image($nav_menu$picture$votes$pic_info$comments$film_strip);
    
pagefooter();
    
ob_end_flush();
}

?>

Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Re: Remove keywords (Re: Remove functions)
« Reply #8 on: March 12, 2006, 03:33:55 pm »

or can the problem be somewhere in upload.php?
Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Re: Remove keywords (Re: Remove functions)
« Reply #9 on: March 12, 2006, 05:53:22 pm »

this is how my upload.php looks like. i have no idea  ???
Code: [Select]
$form_array = array(
    array($lang_upload_php['album'], 'album', 2),
    array($lang_upload_php['pic_title'], 'title', 0, 255, 1, $title),
    array($captionLabel, 'caption', 3, $CONFIG['max_img_desc_length'], (isset($iptc['Caption'])) ? $iptc['Caption'] : ''),
    //array($lang_upload_php['keywords'], 'keywords', 0, 255, 1,(isset($iptc['Keywords'])) ? implode(' ',$iptc['Keywords']): ''),
    array('control', 'phase_2', 4),
    array('unique_ID', $_POST['unique_ID'], 4),
    );

    // Check for user defined fields.
    if(!empty($CONFIG['user_field1_name'])) {
        $form_array[] = array($CONFIG['user_field1_name'], 'user1', 0, 255, 1);
    }

    if(!empty($CONFIG['user_field2_name'])) {
        $form_array[] = array($CONFIG['user_field2_name'], 'user2', 0, 255, 1);
    }

    if(!empty($CONFIG['user_field3_name'])) {
        $form_array[] = array($CONFIG['user_field3_name'], 'user3', 0, 255, 1);
    }

    if(!empty($CONFIG['user_field4_name'])) {
        $form_array[] = array($CONFIG['user_field4_name'], 'user4', 0, 255, 1);
    }


    // Check for movies and audio, and create width and height boxes if true.
    if((is_movie($file_set[1])) or (is_audio($file_set[1]))) {

        //Add width and height boxes to the form.
        $form_array[] = array($lang_admin_php['th_wd'],'movie_wd', 0, 4, 1);
        $form_array[] = array($lang_admin_php['th_ht'],'movie_ht', 0, 4, 1);

    }

    // Create the form and echo more instructions.
    create_form($form_array);

    // More instructions.
    if(count($escrow_array) > '1') {

        form_statement($lang_upload_php['place_instr_2']);

    }

    // Make button say 'Continue.'
    close_form($lang_continue);

    // Close the table, create footers, and flush the output buffer.
    endtable();
    pagefooter();
    ob_end_flush();

    // Exit the script.
    exit;


}
?>
Logged

minipoett

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 54
Re: Remove keywords (Re: Remove functions)
« Reply #10 on: March 12, 2006, 05:57:15 pm »

the problem stays the same if i re-enable the keyword-function. if anybody has only a kind of idea, where to check, that would already be a big help,
Logged
Pages: [1]   Go Up
 

Page created in 0.045 seconds with 20 queries.