Login






nasthon1005 (smartjob) v1.0.6 released

Changes

  1. Admin Guideline update (Add section "Startup Configuration")
  2. Handle IE display layout problem and css fixed.
  3. NAS_load_profile_values BUG Fixed

    Change Files:

    include/functions.inc.php
    display-post.php
    main-ext.css
    readme.txt
    AdminGuide-nasthon1005-v1.2.pdf


    1) Admin Guideline update (Add section "Startup Configuration").
    In homepage, "Job Search Form" at right column (_index_quicksearch.php), the "Classification" option field (field id = 6) must be set to "searchable" to make the searching criteria works
    Update /AdminGuide-nasthon1005-vXX.pdf from version "1.1" to "1.2"


    2) css fix
    edit: /display-post.php

    Around line: 353

    CHANGE:
    class="form_apply_button"

    TO:
    class="button_apply"

    3) Handle IE display layout problem.
    This will prevent the right column display problem if the block's width exceed the website overall width.

    edit: /main-ext.css

    CHANGE (around line 10):
    #content{float:left; width:733px; text-align:left; border-left:1px dashed #ccc;}

    TO:
    #content{float:left; width:733px; text-align:left; border-left:1px dashed #ccc; overflow:hidden;}


    4) NAS_load_profile_values BUG FIXED
    This will cause the Employer profile Logo and description cannot be shown in Job detail page.

    edit: /include/functions.inc
    line: 113

    REPLACE:
    $sql = "SELECT * FROM `profiles_table` WHERE profile_id='JB_escape_sql($profile_id)' ";

    WITH:
    $sql = "SELECT * FROM `profiles_table` WHERE profile_id='" . JB_escape_sql($profile_id). "' ";