mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@789 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
fdffc30fec
commit
810f30cf6b
21 changed files with 99 additions and 94 deletions
|
|
@ -88,7 +88,7 @@
|
|||
$addon_info->author->email_address = $xml_obj->author->attrs->email_address;
|
||||
$addon_info->author->homepage = $xml_obj->author->attrs->link;
|
||||
$addon_info->author->date = $xml_obj->author->attrs->date;
|
||||
$addon_info->author->description = $xml_obj->author->description->body;
|
||||
$addon_info->author->description = trim($xml_obj->author->description->body);
|
||||
|
||||
// history
|
||||
if(!is_array($xml_obj->history->author)) $history[] = $xml_obj->history->author;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@
|
|||
<actions>
|
||||
<action name="dispIndex" type="view" standalone="true" admin_index="true" />
|
||||
<action name="dispAddonInfo" type="view" standalone="true" />
|
||||
<action name="procToggleActivateAddon" type="controller" standalone="true" />
|
||||
<action name="procAddonToggleActivate" type="controller" standalone="true" />
|
||||
</actions>
|
||||
</module>
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
</tables>
|
||||
<columns>
|
||||
<column name="module" default="module" notnull="notnull" />
|
||||
<column name="type" default="type" notnull="notnull" />
|
||||
<column name="action" default="action" notnull="notnull" />
|
||||
</columns>
|
||||
</query>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
<table name="action_foward">
|
||||
<column name="module" type="varchar" size="80" notnull="notnull" unique="idx_foward" />
|
||||
<column name="type" type="varchar" size="15" notnull="notnull" unique="idx_foward"/>
|
||||
<column name="action" type="varchar" size="255" notnull="notnull" unique="idx_foward"/>
|
||||
</table>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue