mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-31 23:20:43 +02:00
Sales are below agent, but admin add sales not yet select Agent
This commit is contained in:
parent
e1272ec531
commit
cb23ddb912
3 changed files with 43 additions and 12 deletions
|
@ -72,6 +72,16 @@ function _get($param, $defvalue = '')
|
|||
return safedata($_GET[$param]);
|
||||
}
|
||||
}
|
||||
|
||||
function _req($param, $defvalue = '')
|
||||
{
|
||||
if (!isset($_REQUEST[$param])) {
|
||||
return $defvalue;
|
||||
} else {
|
||||
return safedata($_REQUEST[$param]);
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
require_once File::pathFixer('system/orm.php');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue