diff options
Diffstat (limited to 'frontend/modules')
-rw-r--r-- | frontend/modules/gentoo/step1.php | 8 | ||||
-rw-r--r-- | frontend/modules/gentoo/step2.php | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/frontend/modules/gentoo/step1.php b/frontend/modules/gentoo/step1.php index aeb0a9e..20899bb 100644 --- a/frontend/modules/gentoo/step1.php +++ b/frontend/modules/gentoo/step1.php @@ -6,10 +6,10 @@ function gentoo_body_step1() { global $S; $configuration=&$S['wizard.configuration']; //$opts=$configuration->get_configopts(); // TODO use this to set selected="selected" on the current profile - echo 'Profile: <select name="pkgdir">'; - $r=$S['pdo']->query('SELECT * FROM `profiles` WHERE `flags` NOT LIKE "%d%"'); // d for disabled + echo 'Profile: <select name="profileid">'; + $r=$S['pdo']->query('SELECT * FROM `gentoo_profiles` WHERE `flags` NOT LIKE "%d%"'); // d for disabled while ($profile=$r->fetch(PDO::FETCH_ASSOC)) { - $profile=new sql_profile($profile); + $profile=new sql_gentoo_profile($profile); $display=$profile->name?$profile->name:($profile->pkgdir?$profile->pkgdir:'/'); echo '<option value="'.$profile->id.'">'.htmlentities($display).'</option>'; } @@ -17,7 +17,7 @@ function gentoo_body_step1() { } function gentoo_process_step1() { global $S, $request; - $profile=new sql_profile($request['pkgdir']); + $profile=new sql_gentoo_profile($request['profileid']); $profileopt=new sql_configopt($S['wizard.configuration']->id, 'profile', $profile->id); $profileopt->write(); } diff --git a/frontend/modules/gentoo/step2.php b/frontend/modules/gentoo/step2.php index e94e978..c800a5d 100644 --- a/frontend/modules/gentoo/step2.php +++ b/frontend/modules/gentoo/step2.php @@ -107,7 +107,7 @@ function gentoo_body_step2() { global $S; $configuration=&$S['wizard.configuration']; $opts=$configuration->get_configopts(); - $profile=new sql_profile($opts['profile']); + $profile=new sql_gentoo_profile($opts['profile']); $bcs=$profile->get_packages(); echo 'Search packages: <input id="psearch" onkeyup="packagesearch(this)" /> <a href="javascript:var e=document.getElementById(\'psearch\'); e.value=\'\'; e.onkeyup()">Clear</a>'; echo '<div id="plist"><div id="zero" style="display: none">'.print_error('No results found.').'</div>'; @@ -119,7 +119,7 @@ function gentoo_body_step2() { foreach ($packages as $name => $vers) { foreach ($vers as $ver => $attrs) { $safename=htmlentities("$bc$lc/$name-$ver"); - echo '<div class="pkg'.($attrs['masked']?' masked':'').'"><input id="p'.$i.'" type="checkbox" name="expkgs['.$safename.']" /><label class="pd" for="p'.$i++.'">'.htmlentities("$name-$ver").' - '.htmlentities($attrs['description']).($attrs['masked']?' [MASKED]':'').'</label></div>'."\n"; + echo '<div class="pkg'.($attrs['masked']?' masked':'').'"><input id="p'.$i.'" type="checkbox" name="expkgs['.$safename.']" /><label class="pd" for="p'.$i++.'">'.htmlentities("$name-$ver").' - '.htmlentities($attrs['desc']).($attrs['masked']?' [MASKED]':'').'</label></div>'."\n"; } } echo '</div>'."\n"; |