mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 12:11:19 +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();
|
||||
$currentstate = $latestContent->getWorkflowState();
|
||||
$wkflog = array_shift($latestContent->getWorkflowLog());
|
||||
$wkflogs = $latestContent->getWorkflowLog();
|
||||
$wkflog = array_shift($wkflogs);
|
||||
$workflow = $latestContent->getWorkflow();
|
||||
|
||||
$msg = "The document is currently in state: ".$currentstate->getName()."<br />";
|
||||
|
|
Loading…
Reference in New Issue
Block a user