Skip to content

Commit

Permalink
Fix for errant version number and small migrations fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cdevroe committed Sep 18, 2017
1 parent 5b1b1ba commit 03731c8
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion application/config/config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

$config['unmark_version'] = '1.7.1.2';
$config['unmark_version'] = '1.7.1.4';

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion application/helpers/view_helper.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php defined("BASEPATH") or exit("No direct script access allowed");

// Asset File Version Number
define("ASSET_VERSION", "1474379925726");
define("ASSET_VERSION", "1505743069101");

// Prints marks count in nice format
function printMarksCount($num)
Expand Down
2 changes: 1 addition & 1 deletion application/migrations/002_archive_stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function __construct()
public function up()
{
// Add column to track when a mark was archived
$this->dbforge->add_column('users_marks', array('datearchived' => array('type'=>'timestamp default current_timestamp')));
$this->dbforge->add_column('users_marks', array('datearchived' => array('type'=>'timestamp')));
}

public function down()
Expand Down
2 changes: 1 addition & 1 deletion assets/css/unmark.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/unmark_welcome.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/production/unmark.bookmarklet.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/production/unmark.loggedin.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/production/unmark.loggedout.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 03731c8

Please sign in to comment.