no more need to set version
parent
bd362a6700
commit
61c905460f
16
_install.php
16
_install.php
|
@ -14,17 +14,16 @@ if (!defined('DC_CONTEXT_ADMIN')) {
|
|||
return;
|
||||
}
|
||||
|
||||
# Get new version
|
||||
$new_version = dcCore::app()->plugins->moduleInfo('kUtRL', 'version');
|
||||
$old_version = dcCore::app()->getVersion('kUtRL');
|
||||
|
||||
try {
|
||||
# Compare versions
|
||||
if (version_compare($old_version, $new_version, '>=')) {
|
||||
if (version_compare(
|
||||
dcCore::app()->getVersion('kUtRL'),
|
||||
dcCore::app()->plugins->moduleInfo('kUtRL', 'version'),
|
||||
'>='
|
||||
)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
# Install or update
|
||||
try {
|
||||
# Table
|
||||
$t = new dbStruct(dcCore::app()->con, dcCore::app()->prefix);
|
||||
$t->{initkUtRL::KURL_TABLE_NAME}
|
||||
|
@ -73,9 +72,6 @@ try {
|
|||
$s->put('kutrl_srv_yourls_username', '', 'string', 'User name to YOURLS service', false, true);
|
||||
$s->put('kutrl_srv_yourls_password', '', 'string', 'User password to YOURLS service', false, true);
|
||||
|
||||
# Version
|
||||
dcCore::app()->setVersion('kUtRL', $new_version);
|
||||
|
||||
# Get dcMiniUrl records as this plugin do the same
|
||||
if (dcCore::app()->plugins->moduleExists('dcMiniUrl')) {
|
||||
require_once __DIR__ . '/inc/patch.dcminiurl.php';
|
||||
|
|
Loading…
Reference in New Issue