Changeset 1630695
- Timestamp:
- 04/06/2017 05:46:22 AM (9 years ago)
- Location:
- eexamhall
- Files:
-
- 46 added
- 4 edited
-
tags/3.9 (added)
-
tags/3.9/Untitled.jpg (added)
-
tags/3.9/Untitled1.jpg (added)
-
tags/3.9/eexamhall.php (added)
-
tags/3.9/install-script.php (added)
-
tags/3.9/menu-pages (added)
-
tags/3.9/menu-pages/add_question.php (added)
-
tags/3.9/menu-pages/add_quiz.php (added)
-
tags/3.9/menu-pages/add_subject.php (added)
-
tags/3.9/menu-pages/bootstrap (added)
-
tags/3.9/menu-pages/bootstrap/css (added)
-
tags/3.9/menu-pages/bootstrap/css/bootstrap.css (added)
-
tags/3.9/menu-pages/bootstrap/img (added)
-
tags/3.9/menu-pages/bootstrap/img/glyphicons-halflings-white.png (added)
-
tags/3.9/menu-pages/bootstrap/img/glyphicons-halflings.png (added)
-
tags/3.9/menu-pages/bootstrap/js (added)
-
tags/3.9/menu-pages/bootstrap/js/application.js (added)
-
tags/3.9/menu-pages/bootstrap/js/bootstrap-affix.js (added)
-
tags/3.9/menu-pages/bootstrap/js/bootstrap-tooltip.js (added)
-
tags/3.9/menu-pages/bootstrap/js/bootstrap.js (added)
-
tags/3.9/menu-pages/bootstrap/js/bootstrap.min.js (added)
-
tags/3.9/menu-pages/help_n_sup.php (added)
-
tags/3.9/menu-pages/images (added)
-
tags/3.9/menu-pages/images/009.gif (added)
-
tags/3.9/menu-pages/images/068.gif (added)
-
tags/3.9/menu-pages/jquery.min.js (added)
-
tags/3.9/menu-pages/js (added)
-
tags/3.9/menu-pages/js/jquery.min.js (added)
-
tags/3.9/menu-pages/results.php (added)
-
tags/3.9/menu-pages/setting.php (added)
-
tags/3.9/menu-pages/uninstall.php (added)
-
tags/3.9/menu-pages/view_question.php (added)
-
tags/3.9/menu-pages/view_quiz.php (added)
-
tags/3.9/readme.txt (added)
-
tags/3.9/screenshot-1.jpg (added)
-
tags/3.9/screenshot-1.png (added)
-
tags/3.9/screenshot-2.jpg (added)
-
tags/3.9/screenshot-2.png (added)
-
tags/3.9/screenshot-3.jpg (added)
-
tags/3.9/screenshot-3.png (added)
-
tags/3.9/screenshot-4.jpg (added)
-
tags/3.9/screenshot-4.png (added)
-
tags/3.9/screenshot-5.jpg (added)
-
tags/3.9/screenshot-5.png (added)
-
tags/3.9/screenshot-6.jpg (added)
-
tags/3.9/screenshot-6.png (added)
-
trunk/eexamhall.php (modified) (1 diff)
-
trunk/menu-pages/add_question.php (modified) (1 diff)
-
trunk/menu-pages/add_subject.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eexamhall/trunk/eexamhall.php
r1575082 r1630695 5 5 Description: 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 6 6 Author: rohitashv 7 Version: 3. 48 Author URI: http:// eexamhall.com/7 Version: 3.9 8 Author URI: http://singhalrohitashv.com/ 9 9 */ 10 10 -
eexamhall/trunk/menu-pages/add_question.php
r867533 r1630695 13 13 if(isset($_POST['add_question'])) 14 14 { 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']); 20 20 $op4 = $_POST['op4']; 21 21 $correct = $_POST['correct_op']; -
eexamhall/trunk/menu-pages/add_subject.php
r867533 r1630695 11 11 if(isset($_POST['addsubject'])) 12 12 { 13 $subname = $_POST['name'];13 $subname = strip_tags($_POST['name']); 14 14 $insert_query="insert into `eexamhall_subject`(`id`,`subject_name`) values('','$subname')"; 15 15 $wpdb->query($insert_query); … … 18 18 if(isset($_POST['update_name'])) 19 19 { 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']); 22 22 $update_query = "update `eexamhall_subject` set `subject_name`='$up_su_n' where `id`='$up_su_id'"; 23 23 $wpdb->query($update_query); -
eexamhall/trunk/readme.txt
r1575082 r1630695 4 4 Tags: eexamhall, online exam software, online exam, online quiz creator 5 5 Requires at least: 3.2 6 Stable tag: 3. 46 Stable tag: 3.9 7 7 8 8 Creates Quiz or exams for your institute in three simple steps : add subject, add quiz and add question … … 85 85 =3.1= 86 86 1. Added Premium Feature 87 88 =3.9= 89 Removed Plugin Vulnerability found
Note: See TracChangeset
for help on using the changeset viewer.