fixed a search indexer problem and a tabs.css conflict with tinymce

This commit is contained in:
Martin Kamerbeek 2006-09-01 14:43:16 +00:00
parent 8045055d12
commit 518d820a5e
5 changed files with 18 additions and 12 deletions

View file

@ -131,10 +131,10 @@ sub create {
#-------------------- added by zxp end
my $add = $self->session->db->prepare("insert into assetIndex (assetId, title, url, creationDate, revisionDate,
ownerUserId, groupIdView, groupIdEdit, lineage, className, synopsis, keywords) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )");
ownerUserId, groupIdView, groupIdEdit, className, synopsis, keywords) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
$add->execute([$asset->getId, $asset->get("title"), $asset->get("url"), $asset->get("creationDate"),
$asset->get("revisionDate"), $asset->get("ownerUserId"), $asset->get("groupIdView"), $asset->get("groupIdEdit"),
$asset->get("lineage"), $asset->get("className"), $synopsis, $keywords]);
$asset->get("className"), $synopsis, $keywords]);
return $self;
}