Forums

Class "JRequest" not found

hofmannbus 20 Dec, 2022
hi,
in Joomla 3, chronoforms 7 with PHP 8, I had create a php code that fetches me the post title. This code seems to no longer work in Joomla4+PHP8.
It comes an error "Class "JRequest" not found".
Does anyone have any idea how to adapt the code for Joomla4?
The title is read in a second form field with Value article_title.

<?php
$article_title = '';
$id = \JRequest::getInt('id', '');
$article = \JTable::getInstance('content');
$article->load($id);
$this->data['article_title'] = $article->get('title');
?>
You need to login to be able to post a reply.