%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.209 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/old/administrator/components/com_sppolls/ |
Upload File : |
<?php
defined('_JEXEC') or die;
class SppollsController extends JControllerLegacy{
public function display($cachable=false,$urlparams=false){
$view = $this->input->get('view','polls');
$layout = $this->input->get('layout','default');
$id = $this->input->getInt('id');
$this->input->set('view',$view);
// Check for edit form.
if($view == 'poll' && $layout == 'edit' && !$this->checkEditId('com_sppolls.edit.poll',$id)){
// Somehow the person just went to the form - we don't allow that.
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID',$id));
$this->setMessage($this->getError(),'error');
$this->setRedirect(JRoute::_('index.php?option=com_sppolls&view=polls',false));
return false;
}
parent::display($cachable,$urlparams);
return $this;
}
}