]> git.sur5r.net Git - bacula/docs/commitdiff
ebl Tweak page
authorEric Bollengier <eric@eb.homelinux.org>
Sat, 8 Mar 2008 15:13:38 +0000 (15:13 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sat, 8 Mar 2008 15:13:38 +0000 (15:13 +0000)
docs/home-page/en/pages/testimonial.php

index 1afaacdfba3cf199fb7733d21199dac7dd92ba39..6d399b9357960f71c28d4b81ed4b3be6a22d1fa8 100644 (file)
@@ -337,7 +337,7 @@ information about how this data will be used.
 
 <tr>
         <td class="content">
-<form name='form1' enctype="multipart/form-data" method='post' onsubmit="return validate_testimonial(this)" action='?page=testimonial'>
+<form name='form1' enctype="multipart/form-data" method='post' action='?page=testimonial'>
 <input type='hidden' name='page' value='testimonial'>
 <table border='0' class='Content'>
 
@@ -560,12 +560,12 @@ Nics:
 <?
  if ($_REQUEST['action'] == 'Modify') {
   echo "<input type='hidden' title='testimonial id' id='id' name='id' class='ItemValue' value=''>";
-  echo "<input type='submit' name='action' class='ItemValue' value='Save'>";
+  echo "<input type='submit' name='action' class='ItemValue' onclick='return validate_testimonial(this);' value='Save'>";
   echo "<input type='submit' name='action' class='ItemValue' onclick='confirm(\"Are you sure ?\");' value='Delete'><br>";
   echo "<input type='hidden' name='page' class='ItemValue' value='testimonial'><br>";
 
 } else {  
-  echo "<input type='submit' name='action' class='ItemValue' value='Review Profile Submission'>";
+  echo "<input type='submit' name='action' class='ItemValue' onclick='return validate_testimonial(this);' value='Review Profile Submission'>";
 }
 ?>
 
@@ -679,10 +679,10 @@ if ($_REQUEST['action'] == 'Modify') {
         $form = load_formul($filename);
         
         if ($form['org_logo'] && file_exists($form['org_logo'])) {
-            rename($upload_dir + $form['org_logo'], $upload_dir + $form['org_logo'] + '.remove');
+            rename($upload_dir + $form['org_logo'], 'removed.' + $upload_dir + $form['org_logo']);
         }
         if (file_exists($filename)) {
-            rename($filename, "$filename.remove");
+            rename($filename, "$filename-removed");
             echo "Profile deleted";
         }
 
@@ -775,14 +775,15 @@ function view_all()
     /* Ceci est la facon correcte de traverser un dossier. */
         $i = 0 ;
         while (false !== ($file = readdir($handle))) {
-            if (preg_match("/profile.[a-z0-9\.]+/", $file)) {
+            if (preg_match("/^profile.[a-z0-9\.]+$/", $file)) {
                 if (($i >= $offset) && ($i < $max)) {
-                    print_formul_file("$dat_dir/$file",$admin);
+                    $i += print_formul_file("$dat_dir/$file",$admin);
+                } else {
+                    $i++;
                 }
                 if ($i > $max) {
                     break;
-                }
-           $i++;
+               }
             }
         } 
         closedir($handle);
@@ -802,7 +803,7 @@ function view_all()
 
 function export_form($formul)
 {
-        global $country_lst, $org_type_lst, $org_industry_lst, $os_lst, $catalog_lst;
+        global $country_lst, $org_type_lst, $org_industry_lst, $os_lst, $catalog_lst, $version_lst;
 
         $attribs = array('contact_name','email_address', 'org_name','title','website',
                          'hardware_comments','comments',
@@ -868,7 +869,7 @@ Best regards.
 ";
 
         
-        mail('testimonials@rt.baculasystems.com', $subject, $message, "From: $name <$email>");
+        mail('testimonial@rt.baculasystems.com', $subject, $message, "From: $name <$email>");
 
         echo "The email has been sent for approval.<br/>";
 }
@@ -1132,7 +1133,7 @@ function dump_sql()
     if ($handle = opendir($dat_dir)) {
     /* Ceci est la facon correcte de traverser un dossier. */
         while (false !== ($file = readdir($handle))) {
-            if (preg_match("/profile.[a-z0-9\.]+/", $file)) {
+            if (preg_match("/^profile.[a-z0-9\.]+$/", $file)) {
                $tmpv = array();
                $tmpk = array();
                $form = load_formul("$dat_dir/$file");