1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 20:57:26 +02:00

PHP 7.3 fix.

This commit is contained in:
Cameron
2019-02-07 16:34:00 -08:00
parent 72259fb9c0
commit b56f81fa23

View File

@@ -135,7 +135,7 @@ class e_admin_request
// Set current id // Set current id
if(isset($this->_request_qry[$this->_id_key])) if(isset($this->_request_qry[$this->_id_key]))
{ {
$this->_id = preg_replace('/[^\w-:.]/', '', $this->_request_qry[$this->_id_key]); $this->_id = preg_replace('/[^\w\-:\.]/', '', $this->_request_qry[$this->_id_key]);
} }
$this->_posted_qry =& $_POST; //raw? $this->_posted_qry =& $_POST; //raw?