Plugin Directory

Changeset 1630695


Ignore:
Timestamp:
04/06/2017 05:46:22 AM (9 years ago)
Author:
rohitashv
Message:

Minor Bug resolved

Location:
eexamhall
Files:
46 added
4 edited

Legend:

Unmodified
Added
Removed
  • eexamhall/trunk/eexamhall.php

    r1575082 r1630695  
    55Description: This plugin is basically designed to create the online exams, here admin can create the online exam in three simple steps and can share the url with the users to use them
    66Author: rohitashv
    7 Version: 3.4
    8 Author URI: http://eexamhall.com/
     7Version: 3.9
     8Author URI: http://singhalrohitashv.com/
    99*/
    1010
  • eexamhall/trunk/menu-pages/add_question.php

    r867533 r1630695  
    1313if(isset($_POST['add_question']))
    1414{
    15     $quiz_id = $_POST['quiz_n'];
    16     $quest = $_POST['question'];
    17     $op1 = $_POST['op1'];
    18     $op2 = $_POST['op2'];
    19     $op3 = $_POST['op3'];
     15    $quiz_id = strip_tags($_POST['quiz_n']);
     16    $quest = strip_tags($_POST['question']);
     17    $op1 = strip_tags($_POST['op1']);
     18    $op2 = strip_tags($_POST['op2']);
     19    $op3 = strip_tags($_POST['op3']);
    2020    $op4 = $_POST['op4'];
    2121    $correct = $_POST['correct_op'];
  • eexamhall/trunk/menu-pages/add_subject.php

    r867533 r1630695  
    1111if(isset($_POST['addsubject']))
    1212{
    13     $subname = $_POST['name'];
     13    $subname = strip_tags($_POST['name']);
    1414    $insert_query="insert into `eexamhall_subject`(`id`,`subject_name`) values('','$subname')";
    1515    $wpdb->query($insert_query);
     
    1818if(isset($_POST['update_name']))
    1919{
    20     $up_su_n = $_POST['up_su_n'];
    21     $up_su_id = $_POST['up_id'];
     20    $up_su_n = strip_tags($_POST['up_su_n']);
     21    $up_su_id = strip_tags($_POST['up_id']);
    2222    $update_query = "update `eexamhall_subject` set `subject_name`='$up_su_n' where `id`='$up_su_id'";
    2323    $wpdb->query($update_query);
  • eexamhall/trunk/readme.txt

    r1575082 r1630695  
    44Tags: eexamhall, online exam software, online exam, online quiz creator
    55Requires at least: 3.2
    6 Stable tag: 3.4
     6Stable tag: 3.9
    77
    88Creates Quiz or exams for your institute in three simple steps : add subject, add quiz and add question
     
    8585=3.1=
    86861. Added Premium Feature
     87
     88=3.9=
     89Removed Plugin Vulnerability found
Note: See TracChangeset for help on using the changeset viewer.