Skip to content
Snippets Groups Projects
Commit 5b353439 authored by Sergiu-Lucian Petrica's avatar Sergiu-Lucian Petrica
Browse files

Removed debug messages

parent 18f5dca7
No related branches found
No related tags found
1 merge request!1Feature/multi upload
......@@ -36,7 +36,6 @@ use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
use TYPO3\CMS\Extbase\Object\ObjectManager;
use TYPO3\CMS\Extbase\Utility\DebuggerUtility;
/**
* The joblist plugin controller
......
......@@ -188,9 +188,7 @@ class JobRepository extends Repository {
*/
public function findByJobId($id) {
$db = $GLOBALS['TYPO3_DB'];
$result = $db->exec_SELECTquery(
'*', 'tx_sgjobs_domain_model_job', 'job_id = ' . $id
)->fetch_assoc();
$result = $db->exec_SELECTquery('*', 'tx_sgjobs_domain_model_job', 'job_id = ' . $id)->fetch_assoc();
return $result;
}
}
......@@ -81,7 +81,6 @@
<div>
<f:form action="applyForm" controller="Joblist" pluginName="JobApplication" pageUid="{settings.applyPage}" objectName="jobData">
<f:debug>{job.jobId}</f:debug>
<f:form.hidden value="{job.jobId}" property="id" />
<f:form.submit value="{f:translate(key:'frontend.applyNow')}" />
</f:form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment