Author Topic: Upgrade Fix  (Read 1875 times)

apmuthu

  • Freshman
  • *
  • Posts: 28
    • View Profile
Upgrade Fix
« on: December 26, 2012, 01:36:56 am »
The line 307 of file public\upgrade\scripts\NutriaUpgradeScript.class.php

            $new_config[] = "  define('SEED', '".DB_USER.DB_PASS.rand(0,10000000000)."');\n";

should be

            $new_config[] = "  define('SEED', '".md5(DB_USER.DB_PASS.rand(0,10000000000))."');\n";