mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
issue 160, fixed a bug for checking easyinstall update
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9151 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2f26277652
commit
78f9868d0a
2 changed files with 3 additions and 3 deletions
|
|
@ -43,7 +43,7 @@
|
|||
$module_list[$key]->need_autoinstall_update = $package[$packageSrl]->need_update;
|
||||
|
||||
// get easyinstall update url
|
||||
if ($module_list[$key]->need_autoinstall_update)
|
||||
if ($module_list[$key]->need_autoinstall_update == 'Y')
|
||||
{
|
||||
$module_list[$key]->update_url = $oAutoinstallModel->getUpdateUrlByPackageSrl($packageSrl);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,8 +36,8 @@
|
|||
<p><a href="{getUrl('','module','admin','act',$val->admin_index_act)}">{$val->title}</a></p>
|
||||
<p>{$val->description}</p>
|
||||
<p cond="$val->need_install" class="update">{$lang->msg_avail_install} <a href="#" onclick="doInstallModule('{$val->module}');return false;">{$lang->msg_do_you_like_install}</a></p>
|
||||
<p cond="$val->need_update" class="update">{$lang->msg_avail_updaet} <a href=="#" onclick="doUpdateModule('{$val->module}'); return false;">{$lang->msg_do_you_like_update}</a></p>
|
||||
<p cond="$val->need_autoinstall_update" class="update">{$lang->msg_avail_easy_update}<a href="{$val->update_url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->msg_do_you_like_update}</a></p>
|
||||
<p cond="$val->need_update" class="update">{$lang->msg_avail_update} <a href=="#" onclick="doUpdateModule('{$val->module}'); return false;">{$lang->msg_do_you_like_update}</a></p>
|
||||
<p cond="$val->need_autoinstall_update == 'Y'" class="update">{$lang->msg_avail_easy_update}<a href="{$val->update_url}&return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->msg_do_you_like_update}</a></p>
|
||||
</td>
|
||||
<td>{$val->version}</td>
|
||||
<td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue