Skip to content

Commit

Permalink
Merge pull request #39 from gocodebox/develop
Browse files Browse the repository at this point in the history
v1.3.10
  • Loading branch information
Benjamin R. Matthews committed Oct 14, 2015
2 parents ba174be + 940b63b commit ce4a619
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ LIFTER LMS

CHANGELOG
=========
v1.3.10 - 2015/10/15
-------------------
+ Updates: Clarifies some prerequisite text
+ Updates: Quiz questions are now randomized!
+ Updates: Fixes small CSS issue
+ BugFixes: Resolves fatal errors with a small subset of premium themes

v1.3.9 - 2015/10/5
-------------------
+ BugFixes: Removes conflict with Yoast SEO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static function metabox_options() {
),
array(
'type' => 'select',
'label' => 'Choose Prerequisite',
'label' => 'Choose Prerequisite Course',
'desc' => 'Select a prerequisite course',
'id' => self::$prefix . 'prerequisite',
'class' => 'llms-chosen-select',
Expand All @@ -219,7 +219,7 @@ public static function metabox_options() {
),
array(
'type' => 'select',
'label' => 'Choose Prerequisite',
'label' => 'Choose Prerequisite Course Track',
'desc' => 'Select the prerequisite course track',
'id' => self::$prefix . 'prerequisite_track',
'class' => 'llms-chosen-select',
Expand Down
4 changes: 2 additions & 2 deletions lifterlms.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: LifterLMS
* Plugin URI: http://lifterlms.com/
* Description: lifterLMS is the easiest way for anyone to create a Learning Management System on the Wordpress platform.
* Version: 1.3.9
* Version: 1.3.10
* Author: codeBOX
* Author URI: http://gocodebox.com
*
Expand All @@ -29,7 +29,7 @@
*/
final class LifterLMS {

public $version = '1.3.9';
public $version = '1.3.10';

protected static $_instance = null;

Expand Down
2 changes: 1 addition & 1 deletion templates/course/lesson_length.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

global $post, $course;

if ( ! $course ) {
if ( ! $course || !is_object($course) ) {

$course = new LLMS_Course( $post->ID );

Expand Down
2 changes: 1 addition & 1 deletion templates/course/price.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

global $post, $course;

if ( ! $course ) {
if ( ! $course || !is_object($course) ) {

$course = new LLMS_Course( $post->ID );

Expand Down
2 changes: 1 addition & 1 deletion templates/course/purchase-link.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

global $post, $course, $product;

if ( ! $course ) {
if ( ! $course || !is_object($course) ) {

$course = new LLMS_Course( $post->ID );

Expand Down
2 changes: 1 addition & 1 deletion templates/course/syllabus.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

global $post, $course;

if ( ! $course ) {
if ( ! $course || !is_object($course) ) {

$course = new LLMS_Course( $post->ID );

Expand Down
2 changes: 1 addition & 1 deletion templates/course/video.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

global $post, $course;

if ( ! $course ) {
if ( ! $course || !is_object($course)) {

$course = new LLMS_Course( $post->ID );

Expand Down
2 changes: 1 addition & 1 deletion templates/quiz/summary.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<div class = "accordion hidden">

<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel-group collapsed" id="accordion" role="tablist" aria-multiselectable="true">

<?php

Expand Down

0 comments on commit ce4a619

Please sign in to comment.