mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 20:51:30 +00:00
fix strict php warning
This commit is contained in:
parent
1a5a5ad6c8
commit
1132bd134e
|
@ -79,7 +79,8 @@ $(document).ready(function() {
|
||||||
|
|
||||||
$action = $transition->getAction();
|
$action = $transition->getAction();
|
||||||
$currentstate = $latestContent->getWorkflowState();
|
$currentstate = $latestContent->getWorkflowState();
|
||||||
$wkflog = array_shift($latestContent->getWorkflowLog());
|
$wkflogs = $latestContent->getWorkflowLog();
|
||||||
|
$wkflog = array_shift($wkflogs);
|
||||||
$workflow = $latestContent->getWorkflow();
|
$workflow = $latestContent->getWorkflow();
|
||||||
|
|
||||||
$msg = "The document is currently in state: ".$currentstate->getName()."<br />";
|
$msg = "The document is currently in state: ".$currentstate->getName()."<br />";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user