mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 03:12:55 +09:00
reverse merge from 1.6.0 (r10041)
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10694 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
636bc9437f
commit
c9e85cea27
1 changed files with 4 additions and 1 deletions
|
|
@ -993,7 +993,10 @@
|
|||
$args->title = $title;
|
||||
$output = executeQuery('document.getDocumentSrlByTitle', $args);
|
||||
if(!$output->data) return null;
|
||||
else return $output->data->document_srl;
|
||||
else {
|
||||
if(is_array($output->data)) return $output->data[0]->document_srl;
|
||||
return $output->data->document_srl;
|
||||
}
|
||||
}
|
||||
|
||||
function getAlias($document_srl){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue