Changeset 3264854
- Timestamp:
- 04/01/2025 06:00:52 AM (12 months ago)
- Location:
- emarksheet
- Files:
-
- 41 added
- 8 edited
-
tags/5.2/emarksheet.php (modified) (1 diff)
-
tags/5.2/readme.txt (modified) (2 diffs)
-
tags/5.4.0 (added)
-
tags/5.4.0/emarksheet.php (added)
-
tags/5.4.0/install-script.php (added)
-
tags/5.4.0/menu-pages (added)
-
tags/5.4.0/menu-pages/bootstrap (added)
-
tags/5.4.0/menu-pages/bootstrap/css (added)
-
tags/5.4.0/menu-pages/bootstrap/css/bootstrap.css (added)
-
tags/5.4.0/menu-pages/bootstrap/css/print.css (added)
-
tags/5.4.0/menu-pages/bootstrap/img (added)
-
tags/5.4.0/menu-pages/bootstrap/img/glyphicons-halflings-white.png (added)
-
tags/5.4.0/menu-pages/bootstrap/img/glyphicons-halflings.png (added)
-
tags/5.4.0/menu-pages/bootstrap/js (added)
-
tags/5.4.0/menu-pages/bootstrap/js/bootstrap.js (added)
-
tags/5.4.0/menu-pages/bootstrap/js/bootstrap.min.js (added)
-
tags/5.4.0/menu-pages/emark_add_class.php (added)
-
tags/5.4.0/menu-pages/emark_add_marks.php (added)
-
tags/5.4.0/menu-pages/emark_add_student.php (added)
-
tags/5.4.0/menu-pages/emark_add_student_list.php (added)
-
tags/5.4.0/menu-pages/emark_add_sub.php (added)
-
tags/5.4.0/menu-pages/help.php (added)
-
tags/5.4.0/menu-pages/js (added)
-
tags/5.4.0/menu-pages/js/jquery.min.js (added)
-
tags/5.4.0/menu-pages/print.php (added)
-
tags/5.4.0/menu-pages/settings.php (added)
-
tags/5.4.0/menu-pages/uninstall.php (added)
-
tags/5.4.0/readme.txt (added)
-
tags/5.4.0/screenshot-1.jpg (added)
-
tags/5.4.0/screenshot-1.png (added)
-
tags/5.4.0/screenshot-2.jpg (added)
-
tags/5.4.0/screenshot-2.png (added)
-
tags/5.4.0/screenshot-3.jpg (added)
-
tags/5.4.0/screenshot-3.png (added)
-
tags/5.4.0/screenshot-4.jpg (added)
-
tags/5.4.0/screenshot-5.png (added)
-
tags/5.4.0/screenshot-6.jpg (added)
-
tags/5.4.0/screenshot-6.png (added)
-
tags/5.4.0/screenshot-7.jpg (added)
-
tags/5.4.0/screenshot-7.png (added)
-
tags/5.4.0/screenshot-8.jpg (added)
-
tags/5.4.0/screenshot-8.png (added)
-
tags/5.4.0/screenshot-9.png (added)
-
trunk/emarksheet.php (modified) (1 diff)
-
trunk/menu-pages/emark_add_class.php (modified) (2 diffs)
-
trunk/menu-pages/emark_add_marks.php (modified) (3 diffs)
-
trunk/menu-pages/emark_add_student_list.php (modified) (1 diff)
-
trunk/menu-pages/emark_add_sub.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
emarksheet/tags/5.2/emarksheet.php
r3263284 r3264854 5 5 Description: This is a simple and unique wordpress plugin to create a simple marksheet using wordpress. You can also give a link to your users to see the result and print it. 6 6 Author: rohitashv 7 Version: 5. 27 Version: 5.4.0 8 8 License: GPL v2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
emarksheet/tags/5.2/readme.txt
r3263284 r3264854 5 5 Requires at least: 4.1 6 6 Tested up to: 6.7.2 7 Stable tag: 5. 27 Stable tag: 5.4.0 8 8 9 9 This is a simple and unique wordpress plugin to create a simple marksheet using wordpress. You can also give a link to your users to see the result and print it. … … 109 109 =5.0= 110 110 Minor Bug Resolved 111 112 =5.4.0= 113 XSS Vulnerability found -
emarksheet/trunk/emarksheet.php
r3263284 r3264854 5 5 Description: This is a simple and unique wordpress plugin to create a simple marksheet using wordpress. You can also give a link to your users to see the result and print it. 6 6 Author: rohitashv 7 Version: 5. 27 Version: 5.4.0 8 8 License: GPL v2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
emarksheet/trunk/menu-pages/emark_add_class.php
r1630687 r3264854 22 22 if($_GET['action']=='delete') 23 23 { 24 $iddelt = $_GET['id'];24 $iddelt = esc_html($_GET['id']); 25 25 $delete_query = "delete from `emarksheet_class` where `id`='$iddelt'"; 26 26 $wpdb->query($delete_query); … … 45 45 if($_GET['action']=='update') 46 46 { 47 $idd = $_GET['id'];47 $idd = esc_html($_GET['id']); 48 48 $selectd_query = "select * from `emarksheet_class` where `id`='$idd'"; 49 49 $selectd_row = $wpdb->get_results($selectd_query); -
emarksheet/trunk/menu-pages/emark_add_marks.php
r3263284 r3264854 7 7 if(isset($_GET['action'])) 8 8 { 9 $id = $_GET['id'];9 $id = esc_html($_GET['id']); 10 10 $selectd_query = "select * from `emarksheet_student` where `id`='$id'"; 11 11 $selectd_row = $wpdb->get_results($selectd_query); … … 34 34 { 35 35 if(isset($_POST['get_st_lt'])) 36 $class_n = $_POST['class_n'];36 $class_n = esc_html($_POST['class_n']); 37 37 else{ 38 $class_n = $_GET['class_id'];39 $student_id = $_POST['st_id'];38 $class_n = esc_html($_GET['class_id']); 39 $student_id = esc_html($_POST['st_id']); 40 40 $data = serialize($_POST); 41 41 $gt_old = "select * from `emarksheet_marks` where `student_id`='$student_id' AND `class_id`='$class_n'"; … … 109 109 } 110 110 ?> 111 -
emarksheet/trunk/menu-pages/emark_add_student_list.php
r1170706 r3264854 12 12 if(isset($_POST['update_name'])) 13 13 { 14 $up_id = $_POST['up_id'];15 $class = $_POST['class_nm'];16 $roll_n = $_POST['roll_number'];17 $first_n = $_POST['first_n'];18 $last_n = $_POST['last_n'];19 $father_n = $_POST['f_name'];20 $mother_n = $_POST['m_name'];21 $dob_date = $_POST['dob_date'];22 $dob_m= $_POST['dob_month'];23 $dob_y = $_POST['dob_year'];14 $up_id = esc_html($_POST['up_id']); 15 $class = esc_html($_POST['class_nm']); 16 $roll_n = esc_html($_POST['roll_number']); 17 $first_n = esc_html($_POST['first_n']); 18 $last_n = esc_html($_POST['last_n']); 19 $father_n = esc_html($_POST['f_name']); 20 $mother_n = esc_html($_POST['m_name']); 21 $dob_date = esc_html($_POST['dob_date']); 22 $dob_m= esc_html($_POST['dob_month']); 23 $dob_y = esc_html($_POST['dob_year']); 24 24 $update_query = "update `emarksheet_student` set `class_id`='$class', 25 25 `roll_no`='$roll_n',`first_n`='$first_n',`last_n`='$last_n',`father_n`='$father_n',`mother_n`='$mother_n', -
emarksheet/trunk/menu-pages/emark_add_sub.php
r1630687 r3264854 37 37 if($_GET['action']=='delete') 38 38 { 39 $iddelt = $_GET['id'];39 $iddelt = esc_html($_GET['id']); 40 40 $delete_query = "delete from `emarksheet_subject` where `id`='$iddelt'"; 41 41 $wpdb->query($delete_query); -
emarksheet/trunk/readme.txt
r3263284 r3264854 5 5 Requires at least: 4.1 6 6 Tested up to: 6.7.2 7 Stable tag: 5. 27 Stable tag: 5.4.0 8 8 9 9 This is a simple and unique wordpress plugin to create a simple marksheet using wordpress. You can also give a link to your users to see the result and print it. … … 109 109 =5.0= 110 110 Minor Bug Resolved 111 112 =5.4.0= 113 XSS Vulnerability resolved
Note: See TracChangeset
for help on using the changeset viewer.