85 Posts
Jpeg
10 years ago
1
Topic
Hi,

I think for the update (3.2.2) my global fields (multi content type) with custom|article|introtext storage, wasn't retreived in the content view but it's ok in search view.
The field exist but his value is empty.

Can you help me ?
Thx a lot
Jpeg

//

Bonjour,
je pense que depuis la mise à jour 3.2.2 mes champs "globaux" stockés en custom|article|introtext ont un problème, je ne récupère plus leur valeur dans la vue content, par contre ok du côté de la recherche. PI, le champ existe mais la valeur est vide.

Un petit coup de main :) ?
Bonne journée
Jpeg
Get a Book for SEBLOD
85 Posts
Jpeg
10 years ago
0
Level 1
My solution :
$input = JFactory::getApplication()->input;
$id = $input->getInt('id');
$obj=JCckDatabase::loadObject( 'SELECT s.id, s.introtext FROM #__content AS s WHERE s.id='.$id );
$intro=@$obj->introtext;
$regex= '#::NAME::(.*?)::/NAME::#s';
preg_match( $regex, $intro, $matches );

Get a Book for SEBLOD