Login






nasthon1004 (freedom) v1.1.7 released

Changes

  1. Prevent the job search form too wide to break the layout
  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
      index-search-result.php
      main.css
      readme.txt


      1) Prevent the job search form too wide to break the layout

      edit: /index-search-result.php

      CHANGE:

      <div class="box4" style="width:99%;">

      TO:

      <div class="box4" style="width:100%; overflow-x:auto; padding-bottom:7px;">

      edit: /main.css

      INSIDE:
      #search_form TD.field { .. }

      REMOVE:
      white-space: nowrap;

       

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

      Around line: 353

      CHANGE:

      class="form_apply_button"

      TO:
      class="button_apply"

       

      3) css fix (left column category listing)

      CHANGE:

      TABLE.cat_table td{
      white-space: nowrap;
      }


      TO:

      TABLE.cat_table td{
      white-space: collapse;
      }

       

      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). "' ";